getWifiName method

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

Obtains the wifi name (SSID) of the connected network

Implementation

@override
Future<String?> getWifiName() {
  return _getConnectionValue((connection) async => connection?.id);
}