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