Certificate constructor

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

Implementation

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