AppException constructor

AppException(
  1. bool show, {
  2. required String title,
  3. required int code,
  4. String? beautifulMsg,
  5. String? uglyMsg,
})

Implementation

AppException(
  this.show, {
  required this.title,
  required this.code,
  this.beautifulMsg,
  this.uglyMsg,
});