fromJson static method

IoT? fromJson(
  1. dynamic value
)

Returns a new IoT instance and imports its values from value if it's a Map, null otherwise.

Implementation

// ignore: prefer_constructors_over_static_methods
static IoT? 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 "IoT[$key]" is missing from JSON.');
        assert(json[key] != null,
            'Required key "IoT[$key]" has a null value in JSON.');
      });
      return true;
    }());

    return IoT(
      name: mapValueOfType<String>(json, r'name'),
      token: mapValueOfType<String>(json, r'token'),
      iotLicenseType: mapValueOfType<String>(json, r'iot_license_type'),
      location: mapValueOfType<String>(json, r'location'),
      protocol: mapValueOfType<String>(json, r'protocol'),
      status: mapValueOfType<bool>(json, r'status'),
      lastOnline: mapValueOfType<String>(json, r'last_online'),
    );
  }
  return null;
}