sendAudio method
Implementation
Future<void> sendAudio(Uint8List data, {bool awaitBtResponse = false}) async {
if (audioTxChannel != null) {
await sendDataRawOnCharacteristic(data, audioTxChannel!, awaitBtResponse: awaitBtResponse, awaitAppResponse: false, validateHeader: false);
}
}