ContentRestrictionArray.fromJson constructor
Implementation
factory ContentRestrictionArray.fromJson(Map<String, Object?> json) {
return ContentRestrictionArray(
results: (json[r'results'] as List<Object?>?)
?.map((i) => ContentRestriction.fromJson(
i as Map<String, Object?>? ?? const {}))
.toList() ??
[],
start: (json[r'start'] as num?)?.toInt() ?? 0,
limit: (json[r'limit'] as num?)?.toInt() ?? 0,
size: (json[r'size'] as num?)?.toInt() ?? 0,
restrictionsHash: json[r'restrictionsHash'] as String? ?? '',
links: GenericLinks.fromJson(
json[r'_links'] as Map<String, Object?>? ?? const {}),
);
}