Future<void> deleteRecording(String filePath) async { final file = File(filePath); if (file.existsSync()) { await file.delete(); } }