start method
Implementation
Future<void> start({
required void Function(Float32List chunk, bool isFinal) onChunk,
}) async {
try {
await stop();
_isRecording = true;
_startOfficialSherpa();
} catch (e, stack) {
print("AudioProcessor start error: $e\n$stack");
}
}