added cache for categories

This commit is contained in:
Patrick Alvin Alcala 2025-03-20 13:10:39 +08:00
parent 753c730588
commit 1aa7410e2e
14 changed files with 195 additions and 63 deletions

View file

@ -36,7 +36,7 @@ class Storage {
}
}
Future<String> getPublicURL(String storage, String name) async {
Future<String> getImageURL(String storage, String name) async {
try {
final String file = _supabase.storage.from(storage).getPublicUrl(name);
return file;