Failure constructor

Failure({
  1. String? arn,
  2. String? detail,
  3. String? reason,
})

Implementation

Failure({
  this.arn,
  this.detail,
  this.reason,
});