DeviceInformationChangeNoDeviceLockError.fromJson constructor Null safety

DeviceInformationChangeNoDeviceLockError.fromJson(
  1. Map<String, dynamic> json
)

Alternate constructor that creates a DeviceInformationChangeNoDeviceLockError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

factory DeviceInformationChangeNoDeviceLockError.fromJson(
  Map<String, dynamic> json,
) {
  return DeviceInformationChangeNoDeviceLockErrorImpl.fromJson(json);
}