Downloads a file.
buckets
permissions: noneobjects
permissions: select
final Uint8List file = await supabase
.storage
.from('avatars')
.download('avatar1.png');
final Uint8List file = await supabase
.storage
.from('avatars')
.download(
'avatar1.png',
transform: TransformOptions(
width: 200,
height: 200,
),
);