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