ListPreviewsResponse.fromJson constructor
ListPreviewsResponse.fromJson(
- Map json_
Implementation
ListPreviewsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
previews:
(json_['previews'] as core.List?)
?.map(
(value) => Preview.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
unreachable:
(json_['unreachable'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);