startBluetoothCentral method

Future<void> startBluetoothCentral()

Starts the bluetooth central

Implementation

Future<void> startBluetoothCentral() async {
  if (_bluetoothCentralIsStarted) {
    return;
  }
  _bluetoothCentralIsStarted = true;
  await _platform.startBluetoothCentral();
  await _listenToBluetoothState();
}