Certificate constructor

Certificate({
  1. CertificateDescription? certificateDescription,
  2. CertificateConfig? config,
  3. String? createTime,
  4. Map<String, String>? labels,
  5. String? lifetime,
  6. String? name,
  7. String? pemCertificate,
  8. List<String>? pemCertificateChain,
  9. String? pemCsr,
  10. RevocationDetails? revocationDetails,
  11. String? updateTime,
})

Implementation

Certificate({
  this.certificateDescription,
  this.config,
  this.createTime,
  this.labels,
  this.lifetime,
  this.name,
  this.pemCertificate,
  this.pemCertificateChain,
  this.pemCsr,
  this.revocationDetails,
  this.updateTime,
});