NetworkException constructor

NetworkException({
  1. required String? message,
  2. required int statusCode,
})

Implementation

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