Error constructor

Error({
  1. String? domain,
  2. String? message,
  3. String? reason,
})

Implementation

Error({
  this.domain,
  this.message,
  this.reason,
});