AppException constructor

AppException({
  1. required String message,
  2. String? code,
  3. dynamic originalError,
})

Implementation

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