fromJson static method
Returns a new Gateway instance and imports its values from
value if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static Gateway? fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
// Ensure that the map contains the required keys.
// Note 1: the values aren't checked for validity beyond being non-null.
// Note 2: this code is stripped in release mode!
assert(() {
requiredKeys.forEach((key) {
assert(json.containsKey(key),
'Required key "Gateway[$key]" is missing from JSON.');
assert(json[key] != null,
'Required key "Gateway[$key]" has a null value in JSON.');
});
return true;
}());
return Gateway(
id: num.parse('${json[r'id']}'),
name: mapValueOfType<String>(json, r'name'),
groupId: mapValueOfType<String>(json, r'groupId'),
serialCode: mapValueOfType<String>(json, r'serialCode'),
status: mapValueOfType<String>(json, r'status'),
description: mapValueOfType<String>(json, r'description'),
balenaId: mapValueOfType<String>(json, r'balenaId'),
ingestionConfigData: IngestionConfig.fromJson(
json["ingestionConfigData"],
),
operationalIngestionConfig:
mapValueOfType<Object>(json, r'operationalIngestionConfig'),
gatewayModel: GatewayModel.fromJson(json[r'gatewayModel']),
plant: PlantBasic.fromJson(json[r'plant']),
devices: Device.listFromJson(json[r'devices']),
license: License.fromJson(json[r'license']),
balenaStatus: mapValueOfType<bool>(json, r'balenaStatus'),
balenaLastSeen: mapDateTime(json, r'balenaLastSeen', 'r'),
);
}
return null;
}