fromJson static method

SkinSchema? fromJson(
  1. dynamic value
)

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

Implementation

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

    return SkinSchema(
      code: mapValueOfType<String>(json, r'code')!,
      name: mapValueOfType<String>(json, r'name')!,
      description: mapValueOfType<String>(json, r'description')!,
      default_: mapValueOfType<bool>(json, r'default')!,
      price: mapValueOfType<int>(json, r'price'),
    );
  }
  return null;
}