GetDeviceSimLockStateResponse.fromJson constructor

GetDeviceSimLockStateResponse.fromJson(
  1. Map json_
)

Implementation

GetDeviceSimLockStateResponse.fromJson(core.Map json_)
    : this(
        simLockState: json_.containsKey('simLockState')
            ? json_['simLockState'] as core.String
            : null,
      );