connectBluetooth method
Connect via Bluetooth.
Implementation
@override
Future<bool> connectBluetooth(String identifier,
{int timeout = 20000}) async {
final result =
await methodChannel.invokeMethod<bool>('connectBluetooth', {
'identifier': identifier,
'timeout': timeout,
});
return result ?? false;
}