Future<void> playStopPreview({bool stop = false}) async { if (isPlaying.value || stop) { isPlaying.value = false; } else { isPlaying.value = true; } update(); }