fromJson static method

ValidateLicenseRequestMetaScope? fromJson(
  1. dynamic value
)

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

Implementation

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

    return ValidateLicenseRequestMetaScope(
      product: mapValueOfType<String>(json, r'product'),
      policy: mapValueOfType<String>(json, r'policy'),
      fingerprints: json[r'fingerprints'] is Iterable
          ? (json[r'fingerprints'] as Iterable).cast<String>().toList(growable: false)
          : const [],
      fingerprint: mapValueOfType<String>(json, r'fingerprint'),
      machine: mapValueOfType<String>(json, r'machine'),
      user: mapValueOfType<String>(json, r'user'),
      entitlements: json[r'entitlements'] is Iterable
          ? (json[r'entitlements'] as Iterable).cast<String>().toList(growable: false)
          : const [],
      checksum: mapValueOfType<String>(json, r'checksum'),
      version: mapValueOfType<String>(json, r'version'),
    );
  }
  return null;
}