DeviceReportUpdateEvent.fromJson constructor
DeviceReportUpdateEvent.fromJson(
- Map json_
Implementation
DeviceReportUpdateEvent.fromJson(core.Map json_)
: this(
deviceId: json_['deviceId'] as core.String?,
report: json_.containsKey('report')
? DeviceReport.fromJson(
json_['report'] as core.Map<core.String, core.dynamic>)
: null,
userId: json_['userId'] as core.String?,
);