$CertificateAuthorityRequest.fromJson constructor

$CertificateAuthorityRequest.fromJson(
  1. Map _json
)

Implementation

$CertificateAuthorityRequest.fromJson(core.Map _json)
    : this(
        requestId: _json.containsKey('requestId')
            ? _json['requestId'] as core.String
            : null,
      );