NetworkException constructor

const NetworkException(
  1. String message, {
  2. int? statusCode,
  3. Map<String, dynamic>? details,
  4. Object? originalError,
})

Creates a new NetworkException

Implementation

const NetworkException(super.message, {super.statusCode, super.details, this.originalError});