getWifiGatewayIP method

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

Obtains the gateway IP address of the connected wifi network

Implementation

@override
Future<String?> getWifiGatewayIP() {
  return _getConnectionValue(
    (connection) async => connection?.ip4Config?.gateway,
  );
}