Certificate constructor

Certificate({
  1. String? certificateArn,
  2. String? certificateIdentifier,
  3. String? certificateType,
  4. bool? customerOverride,
  5. DateTime? customerOverrideValidTill,
  6. String? thumbprint,
  7. DateTime? validFrom,
  8. DateTime? validTill,
})

Implementation

Certificate({
  this.certificateArn,
  this.certificateIdentifier,
  this.certificateType,
  this.customerOverride,
  this.customerOverrideValidTill,
  this.thumbprint,
  this.validFrom,
  this.validTill,
});