NetworkException constructor

NetworkException({
  1. required NetworkError error,
  2. required int? statusCode,
  3. dynamic response,
})

Implementation

NetworkException({
  required this.error,
  required this.statusCode,
  this.response,
});