enable method

Future<void> enable(
  1. CentralState state
)

Enable the BluetoothEmulation domain. state State of the simulated central.

Implementation

Future<void> enable(CentralState state) async {
  await _client.send('BluetoothEmulation.enable', {
    'state': state,
  });
}