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