NetworkException constructor

NetworkException(
  1. int statusCode, {
  2. String? url,
  3. String? message,
  4. String? method,
  5. Exception? cause,
})

An exception indicating an HTTP result that is NOT successful.

Implementation

NetworkException(this.statusCode, {this.url, this.message, this.method, this.cause});