NetworkException constructor

const NetworkException(
  1. String message, {
  2. required NetworkErrorCode code,
  3. int? statusCode,
})

Creates a NetworkException instance.

Implementation

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