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