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