NetworkException constructor

  1. @deprecated
NetworkException({
  1. required Object originalException,
  2. StackTrace originalStackTrace = StackTrace.empty,
  3. String? message,
  4. required Uri? uri,
})

Implementation

@deprecated
NetworkException({
  required Object originalException,
  StackTrace originalStackTrace = StackTrace.empty,
  this.message,
  required this.uri,
}) : super(originalException, originalStackTrace);