connectWatch static method

Future<int> connectWatch(
  1. dynamic macAddress
)

Implementation

static Future<int> connectWatch(macAddress) async {
  // code : 0 = OK 1 = Fail 2 = Time out
  final int code = await _channel
      .invokeMethod('connectReleepWatch', {'releepWatchMac': macAddress});
  return code;
}