ContentArray.fromJson constructor

ContentArray.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory ContentArray.fromJson(Map<String, Object?> json) {
  return ContentArray(
    results: (json[r'results'] as List<Object?>?)
            ?.map((i) =>
                Content.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() ?? 0,
    links: GenericLinks.fromJson(
        json[r'_links'] as Map<String, Object?>? ?? const {}),
  );
}