AppException constructor

AppException({
  1. required int code,
  2. required String message,
  3. DioError? dioError,
})

Implementation

AppException( {
  required this.code,
  required this.message,
  this.dioError
});