NetworkException.fromException constructor
      
      NetworkException.fromException({ 
    
    
- required Object originalException,
- required StackTrace originalStackTrace,
- String? message,
- required Uri? uri,
Implementation
NetworkException.fromException({
  required Object originalException,
  required StackTrace originalStackTrace,
  this.message,
  required this.uri,
}) : super(originalException, originalStackTrace);