isNativeNetworkError function

bool isNativeNetworkError(
  1. Object error
)

Platform implementation for platforms with dart:io support.

Implementation

bool isNativeNetworkError(Object error) {
  return error is SocketException ||
      error is HttpException ||
      error is HandshakeException ||
      error is TlsException;
}