openBluetoothPort method
Implementation
@override
Future<bool> openBluetoothPort(String macAddress) async {
return await methodChannel.invokeMethod<bool>('openBluetoothPort', <String, dynamic>{
'macAddress': macAddress,
}) ??
false;
}