Bakend Dart SDK
Client library for Dart and Flutter applications connecting to a Bakend server.
Install
dart pub add bakend
Usage
import 'package:bakend/bakend.dart';
final client = BakendClient('http://localhost:8080');
await client.auth.register(
const AuthCredentials(email: 'user@example.com', password: 'password123'),
);
final posts = client.collection('posts');
final post = await posts.create({'title': 'Hello'});
Documentation
License
MIT