mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
370 B
370 B
import 'package:appwrite/appwrite.dart';
// Init SDK Client client = Client(); Storage storage = Storage(client);
client .setProject('5df5acd0d48c2') // Your project ID ;
Future result = storage.updateFile( fileId: '[FILE_ID]', read: [], write: [], );
result .then((response) { print(response); }).catchError((error) { print(error); });