getWifiIPv6 method

  1. @override
Future<String?> getWifiIPv6()
override

Obtains the IP v6 address of the connected wifi network

Implementation

@override
Future<String?> getWifiIPv6() {
  return _getConnectionValue(
    (connection) async => _getIpAddress(connection?.ip6Config?.addressData),
  );
}