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,
      );