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