supabase_client 0.0.1 copy "supabase_client: ^0.0.1" to clipboard
supabase_client: ^0.0.1 copied to clipboard

outdated

Database supabase.

Supabase client #

Install #

dart pub add supabase_client

QuickStart #

import 'package:supabase_client/supabase.dart';

void main(List<String> arguments) async {
  var supabase = Database("id", "key");
  await supabase.add("from", {"id": DateTime.now()});
  await supabase.get("from", "id", "^5\$");
  await supabase.getAll("from");
  await supabase.update("from", {"id": 5}, {"id": 10});
  await supabase.delete("from", {"id": 10});
  supabase.on("sandbox", (update) {
    print(update);
  });
}
2
likes
0
pub points
54%
popularity

Publisher

unverified uploader

Database supabase.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

supabase

More

Packages that depend on supabase_client