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