ListExecutionsResponse.fromJson constructor
ListExecutionsResponse.fromJson(
- Map _json
Implementation
ListExecutionsResponse.fromJson(core.Map _json)
: this(
executions: _json.containsKey('executions')
? (_json['executions'] as core.List)
.map<Execution>((value) => Execution.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: _json.containsKey('nextPageToken')
? _json['nextPageToken'] as core.String
: null,
);