AppException constructor

AppException({
  1. String name = "AppException",
  2. required String message,
  3. String description = "",
  4. Map<String, dynamic> data = const {},
  5. StackTrace? stackTrace,
})

Implementation

AppException({
  this.name = "AppException",
  required this.message,
  this.description = "",
  this.data = const {},
  this.stackTrace,
});