CustomException constructor

CustomException({
  1. required String code,
  2. String? message,
  3. dynamic details,
})

Implementation

CustomException({
  required this.code,
  this.message,
  this.details,
});