Exceptions constructor

const Exceptions({
  1. String? message,
  2. int? error,
})

Implementation

const Exceptions({
  this.message,
  this.error,
});