ListActionsResponse.fromJson constructor

ListActionsResponse.fromJson(
  1. 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(),
      );