NetworkException.fromException constructor

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

Implementation

NetworkException.fromException({
  required Object originalException,
  required StackTrace originalStackTrace,
  this.message,
  required this.uri,
}) : super(originalException, originalStackTrace);