FetchCertificateAuthorityCsrResponse.fromJson constructor

FetchCertificateAuthorityCsrResponse.fromJson(
  1. Map json_
)

Implementation

FetchCertificateAuthorityCsrResponse.fromJson(core.Map json_)
    : this(
        pemCsr: json_.containsKey('pemCsr')
            ? json_['pemCsr'] as core.String
            : null,
      );