GetDeviceSimLockStateRequest.fromJson constructor

GetDeviceSimLockStateRequest.fromJson(
  1. Map json_
)

Implementation

GetDeviceSimLockStateRequest.fromJson(core.Map json_)
    : this(
        deviceIdentifier: json_.containsKey('deviceIdentifier')
            ? DeviceIdentifier.fromJson(json_['deviceIdentifier']
                as core.Map<core.String, core.dynamic>)
            : null,
      );