TlsCertificate constructor

TlsCertificate({
  1. String? cert,
  2. String? createTime,
  3. String? expireTime,
  4. String? serialNumber,
  5. String? sha1Fingerprint,
})

Implementation

TlsCertificate({
  this.cert,
  this.createTime,
  this.expireTime,
  this.serialNumber,
  this.sha1Fingerprint,
});