BaseException constructor

const BaseException({
  1. required String title,
  2. required String? detail,
})

Implementation

const BaseException({
  required this.title,
  required this.detail,
});