GoogleCloudApigeeV1ListAsyncQueriesResponse.fromJson constructor

GoogleCloudApigeeV1ListAsyncQueriesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1ListAsyncQueriesResponse.fromJson(core.Map json_)
    : this(
        queries: (json_['queries'] as core.List?)
            ?.map((value) => GoogleCloudApigeeV1AsyncQuery.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );