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