GoogleCloudApigeeV1QueryTabularStatsResponse.fromJson constructor
GoogleCloudApigeeV1QueryTabularStatsResponse.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1QueryTabularStatsResponse.fromJson(core.Map json_)
: this(
columns: (json_['columns'] as core.List?)
?.map((value) => value as core.String)
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
values: (json_['values'] as core.List?)
?.map((value) => value as core.List)
.toList(),
);