ListWorkerPoolsResponse.fromJson constructor
ListWorkerPoolsResponse.fromJson(
- Map json_
Implementation
ListWorkerPoolsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
workerPools: json_.containsKey('workerPools')
? (json_['workerPools'] as core.List)
.map((value) => WorkerPool.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);