fromJson static method

EventMapSchema? fromJson(
  1. dynamic value
)

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

Implementation

// ignore: prefer_constructors_over_static_methods
static EventMapSchema? 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(() {
      assert(json.containsKey(r'map_id'),
          'Required key "EventMapSchema[map_id]" is missing from JSON.');
      assert(json[r'map_id'] != null,
          'Required key "EventMapSchema[map_id]" has a null value in JSON.');
      assert(json.containsKey(r'x'),
          'Required key "EventMapSchema[x]" is missing from JSON.');
      assert(json[r'x'] != null,
          'Required key "EventMapSchema[x]" has a null value in JSON.');
      assert(json.containsKey(r'y'),
          'Required key "EventMapSchema[y]" is missing from JSON.');
      assert(json[r'y'] != null,
          'Required key "EventMapSchema[y]" has a null value in JSON.');
      assert(json.containsKey(r'layer'),
          'Required key "EventMapSchema[layer]" is missing from JSON.');
      assert(json[r'layer'] != null,
          'Required key "EventMapSchema[layer]" has a null value in JSON.');
      assert(json.containsKey(r'skin'),
          'Required key "EventMapSchema[skin]" is missing from JSON.');
      assert(json[r'skin'] != null,
          'Required key "EventMapSchema[skin]" has a null value in JSON.');
      return true;
    }());

    return EventMapSchema(
      mapId: mapValueOfType<int>(json, r'map_id')!,
      x: mapValueOfType<int>(json, r'x')!,
      y: mapValueOfType<int>(json, r'y')!,
      layer: mapValueOfType<String>(json, r'layer')!,
      skin: mapValueOfType<String>(json, r'skin')!,
    );
  }
  return null;
}