NetworkException constructor

NetworkException({
  1. required int statusCode,
  2. required String message,
  3. required String userMessage,
  4. String? originalError,
})

Implementation

NetworkException({
  required this.statusCode,
  required this.message,
  required this.userMessage,
  this.originalError,
});