DetailException constructor

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

Implementation

const DetailException({
  required super.title,
  super.detail,
});