BackendServiceTlsSettingsSubjectAltName.fromJson constructor

BackendServiceTlsSettingsSubjectAltName.fromJson(
  1. Map json_
)

Implementation

BackendServiceTlsSettingsSubjectAltName.fromJson(core.Map json_)
  : this(
      dnsName: json_['dnsName'] as core.String?,
      uniformResourceIdentifier:
          json_['uniformResourceIdentifier'] as core.String?,
    );