ClientCertificate constructor

ClientCertificate({
  1. String? clientCertificateId,
  2. DateTime? createdDate,
  3. String? description,
  4. DateTime? expirationDate,
  5. String? pemEncodedCertificate,
  6. Map<String, String>? tags,
})

Implementation

ClientCertificate({
  this.clientCertificateId,
  this.createdDate,
  this.description,
  this.expirationDate,
  this.pemEncodedCertificate,
  this.tags,
});