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