Replaces an existing file at the specified path with a new one.
buckets
permissions: noneobjects
permissions: update
and select
final avatarFile = File('path/to/local/file');
final String path = await supabase.storage.from('avatars').update(
'public/avatar1.png',
avatarFile,
fileOptions: const FileOptions(cacheControl: '3600', upsert: false),
);