activeAdapterNames property

Future<HashMap<int, String>> activeAdapterNames

Actives adapter names as a HashMap representing the adapter name of the specified technology. The key value are integer, where a '0' value represents Wi-Fi and a '1' value Bluetooth Low Energy.

Implementation

Future<HashMap<int, String>> get activeAdapterNames async {
  return _datalinkManager.getActiveAdapterNames();
}