RequestDeviceInfoStatus.fromJson constructor

RequestDeviceInfoStatus.fromJson(
  1. Map json_
)

Implementation

RequestDeviceInfoStatus.fromJson(core.Map json_)
  : this(
      eidInfo:
          json_.containsKey('eidInfo')
              ? EidInfo.fromJson(
                json_['eidInfo'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      status: json_['status'] as core.String?,
    );