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