connectToAddress method

  1. @Deprecated('Use `BluetoothConnection.toAddress(address)` instead')
Future<void> connectToAddress(
  1. String? address
)

Implementation

@Deprecated('Use `BluetoothConnection.toAddress(address)` instead')
Future<void> connectToAddress(String? address) => Future(() async {
      _defaultConnection = await BluetoothConnection.toAddress(address);
    });