getBSSID static method

Future<String?> getBSSID()

Implementation

static Future<String?> getBSSID() async {
  final Map<String, String> htArguments = Map();
  String? sResult;
  try {
    sResult = await _channel.invokeMethod('getBSSID', htArguments);
  } on MissingPluginException catch (e) {
    print("MissingPluginException : ${e.toString()}");
  }
  return sResult;
}