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