Certificate constructor

Certificate({
  1. String? certificateId,
  2. ClientCertAuthSettings? clientCertAuthSettings,
  3. String? commonName,
  4. DateTime? expiryDateTime,
  5. DateTime? registeredDateTime,
  6. CertificateState? state,
  7. String? stateReason,
  8. CertificateType? type,
})

Implementation

Certificate({
  this.certificateId,
  this.clientCertAuthSettings,
  this.commonName,
  this.expiryDateTime,
  this.registeredDateTime,
  this.state,
  this.stateReason,
  this.type,
});