fromJson static method
Returns a new DataPageActiveCharacterSchema instance and imports its values from
value if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static DataPageActiveCharacterSchema? 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'data'),
'Required key "DataPageActiveCharacterSchema[data]" is missing from JSON.');
assert(json[r'data'] != null,
'Required key "DataPageActiveCharacterSchema[data]" has a null value in JSON.');
assert(json.containsKey(r'total'),
'Required key "DataPageActiveCharacterSchema[total]" is missing from JSON.');
assert(json[r'total'] != null,
'Required key "DataPageActiveCharacterSchema[total]" has a null value in JSON.');
assert(json.containsKey(r'page'),
'Required key "DataPageActiveCharacterSchema[page]" is missing from JSON.');
assert(json[r'page'] != null,
'Required key "DataPageActiveCharacterSchema[page]" has a null value in JSON.');
assert(json.containsKey(r'size'),
'Required key "DataPageActiveCharacterSchema[size]" is missing from JSON.');
assert(json[r'size'] != null,
'Required key "DataPageActiveCharacterSchema[size]" has a null value in JSON.');
assert(json.containsKey(r'pages'),
'Required key "DataPageActiveCharacterSchema[pages]" is missing from JSON.');
assert(json[r'pages'] != null,
'Required key "DataPageActiveCharacterSchema[pages]" has a null value in JSON.');
return true;
}());
return DataPageActiveCharacterSchema(
data: ActiveCharacterSchema.listFromJson(json[r'data']),
total: mapValueOfType<int>(json, r'total')!,
page: mapValueOfType<int>(json, r'page')!,
size: mapValueOfType<int>(json, r'size')!,
pages: mapValueOfType<int>(json, r'pages')!,
);
}
return null;
}