fromJson static method
Returns a new HLSSettingsResponse instance and imports its values from
value if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static HLSSettingsResponse? 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'auto_on'),
'Required key "HLSSettingsResponse[auto_on]" is missing from JSON.');
assert(json[r'auto_on'] != null,
'Required key "HLSSettingsResponse[auto_on]" has a null value in JSON.');
assert(json.containsKey(r'enabled'),
'Required key "HLSSettingsResponse[enabled]" is missing from JSON.');
assert(json[r'enabled'] != null,
'Required key "HLSSettingsResponse[enabled]" has a null value in JSON.');
assert(json.containsKey(r'quality_tracks'),
'Required key "HLSSettingsResponse[quality_tracks]" is missing from JSON.');
assert(json[r'quality_tracks'] != null,
'Required key "HLSSettingsResponse[quality_tracks]" has a null value in JSON.');
return true;
}());
return HLSSettingsResponse(
autoOn: mapValueOfType<bool>(json, r'auto_on')!,
enabled: mapValueOfType<bool>(json, r'enabled')!,
qualityTracks: json[r'quality_tracks'] is Iterable
? (json[r'quality_tracks'] as Iterable)
.cast<String>()
.toList(growable: false)
: const [],
);
}
return null;
}