DeviceId.fromJson constructor
DeviceId.fromJson(
- Map json_
Implementation
DeviceId.fromJson(core.Map json_)
: this(
buildBrand: json_.containsKey('buildBrand')
? json_['buildBrand'] as core.String
: null,
buildDevice: json_.containsKey('buildDevice')
? json_['buildDevice'] as core.String
: null,
);