disableBluetooth static method
Disable Bluetooth.
It might throw errors if Bluetooth is not available.
Not supported on Web and Apple.
Implementation
static Future<bool> disableBluetooth({
Duration? timeout,
}) async {
return await _bleCommandQueue.queueCommand(
() => _platform.disableBluetooth(),
timeout: timeout,
);
}