Excel
static Future<void> exportExcel({ required List<int> bytes, String fileName = 'Report.xlsx', }) async { await exportFile(bytes: bytes, fileName: fileName); }