supabase_client

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

supabase client

Supabase client #
Install #
dart pub add supabase_client
copied to clipboard
QuickStart #
void main(List<String> arguments) async {
var supabase = Database("id", "key");
await supabase.add(from: "from", data: {"id": DateTime.now()});
await supabase.get(from: "from", dataId: "id", searchData: r"^5$");
await supabase.getAll(from: "data");
await supabase.update(from: "from", dataOrigin: {"id": 5}, dataUpdate: {"id": 10});
await supabase.delete(from:"from", datas:{"id": 10});
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.