findDeviceIdFromBluetoothAddress method

Future<String?> findDeviceIdFromBluetoothAddress(
  1. String address
)

Call this method when you have a bluetooth address and need to find WearOsDevice id

This method return a nullable String value

Implementation

Future<String?> findDeviceIdFromBluetoothAddress(String address) async {
  return channel.invokeMethod("findDeviceIdFromBluetoothAddress", address);
}