connect method
Implementation
@override
Future<String?> connect(bluetoothId) async {
final res = await methodChannel.invokeMethod<String>(
"connect",
{"bluetoothId": bluetoothId},
);
return res;
// await methodChannel.invokeMethod<String>('$bluetoothId');
}