AppException constructor

AppException({
  1. required String? message,
  2. required int? statusCode,
  3. required String? identifier,
})

Implementation

AppException({
  required this.message,
  required this.statusCode,
  required this.identifier,
});