SslCertificate constructor

SslCertificate({
  1. SslCertificateDName? issuedBy,
  2. SslCertificateDName? issuedTo,
  3. DateTime? validNotAfterDate,
  4. DateTime? validNotBeforeDate,
  5. X509Certificate? x509Certificate,
})

Implementation

SslCertificate({
  this.issuedBy,
  this.issuedTo,
  this.validNotAfterDate,
  this.validNotBeforeDate,
  this.x509Certificate,
});