hexabase 0.0.2 hexabase: ^0.0.2 copied to clipboard
Dart and Flutter SDK for Hexabase
Hexabase SDK for Dart and Flutter #
Usage #
Import #
import 'package:hexabase/hexabase.dart';
Initializing #
Hexabase();
After initialized the client, you can take client object anytime.
var client = Hexabase.instance;
Sign in #
await client.auth.signIn('you@example.com', 'your_secure_password');
Workspace #
Get all workspaces
var workspaces = await client!.workspace.all();
// workspaces[0].id
// workspaces[0].name
License #
MIT License