connect method

  1. @override
Future<void> connect(
  1. String uuid
)
override

Connects to a Bluetooth peripheral with the given uuid.

Implementation

@override
Future<void> connect(String uuid) async {
  await methodChannel.invokeMethod<void>('connect', {"deviceId": uuid});
}