openBluetoothPort method

  1. @override
Future<bool> openBluetoothPort(
  1. String macAddress
)
override

Implementation

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