ExceptionInfo constructor

const ExceptionInfo({
  1. required String type,
  2. required String message,
  3. String? description,
})

Implementation

const ExceptionInfo({
  required this.type,
  required this.message,
  this.description,
});