DeviceInfo.fromJson constructor

DeviceInfo.fromJson(
  1. Map json_
)

Implementation

DeviceInfo.fromJson(core.Map json_)
    : this(
        deviceType: json_['deviceType'] as core.String?,
        id: json_['id'] as core.String?,
      );