ListRuntimeActionSchemasResponse.fromJson constructor

ListRuntimeActionSchemasResponse.fromJson(
  1. Map json_
)

Implementation

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