isConnected method

Future<bool> isConnected(
  1. String address
)

Gets the current status of the watch's successful connection according to the watch's mac address.

Implementation

Future<bool> isConnected(String address) {
  return _platform.isConnected(address);
}