List all files in a bucket
Lists all the files within a bucket.
- Policy permissions required:
buckets
permissions: noneobjects
permissions:select
final List<FileObject> objec = await supabase
.storage
.from('avatars')
.list();
Lists all the files within a bucket.
buckets
permissions: noneobjects
permissions: select
final List<FileObject> objec = await supabase
.storage
.from('avatars')
.list();