CertificateInfo constructor

CertificateInfo({
  1. String? certificateId,
  2. String? commonName,
  3. DateTime? expiryDateTime,
  4. CertificateState? state,
  5. CertificateType? type,
})

Implementation

CertificateInfo({
  this.certificateId,
  this.commonName,
  this.expiryDateTime,
  this.state,
  this.type,
});