StatusCondition constructor

StatusCondition({
  1. String? canonicalCode,
  2. String? code,
  3. String? message,
})

Implementation

StatusCondition({
  this.canonicalCode,
  this.code,
  this.message,
});