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