Certificate constructor

Certificate({
  1. String? certificateArn,
  2. DateTime? certificateCreationDate,
  3. String? certificateIdentifier,
  4. String? certificateOwner,
  5. String? certificatePem,
  6. Uint8List? certificateWallet,
  7. int? keyLength,
  8. String? signingAlgorithm,
  9. DateTime? validFromDate,
  10. DateTime? validToDate,
})

Implementation

Certificate({
  this.certificateArn,
  this.certificateCreationDate,
  this.certificateIdentifier,
  this.certificateOwner,
  this.certificatePem,
  this.certificateWallet,
  this.keyLength,
  this.signingAlgorithm,
  this.validFromDate,
  this.validToDate,
});