Create a bucket
Creates a new Storage bucket
- Policy permissions required:
buckets
permissions:insert
objects
permissions: none
final String bucketId = await supabase
.storage
.createBucket('avatars');
Creates a new Storage bucket
buckets
permissions: insert
objects
permissions: none
final String bucketId = await supabase
.storage
.createBucket('avatars');