RestoreCertificateAuthorityRequest.fromJson constructor

RestoreCertificateAuthorityRequest.fromJson(
  1. Map _json
)

Implementation

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