MBException constructor

MBException({
  1. required int statusCode,
  2. String? message,
  3. List<String>? errors,
})

Implementation

MBException({
  required this.statusCode,
  this.message,
  this.errors,
});