ListActionsResponse.fromJson constructor

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