getWifiSubmask method

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

Obtains the submask of the connected wifi network

Implementation

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