PCSIDRenewalRequestProp constructor

PCSIDRenewalRequestProp({
  1. required String csr,
  2. required String otp,
})

Constructs a PCSIDRenewalRequestProp with the given CSR and OTP.

Inherits behavior from CCSIDRequestProp but indicates a different intent (renewal).

Implementation

PCSIDRenewalRequestProp({
  required super.csr,
  required super.otp,
});