GoogleCloudChannelV1Row.fromJson constructor
GoogleCloudChannelV1Row.fromJson(
- Map json_
Implementation
GoogleCloudChannelV1Row.fromJson(core.Map json_)
: this(
partitionKey: json_['partitionKey'] as core.String?,
values:
(json_['values'] as core.List?)
?.map(
(value) => GoogleCloudChannelV1ReportValue.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);