GoogleCloudApigeeV1ServiceIssuersMapping.fromJson constructor

GoogleCloudApigeeV1ServiceIssuersMapping.fromJson(
  1. Map json_
)

Implementation

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