oobium_datastore 1.1.1 oobium_datastore: ^1.1.1 copied to clipboard
Persistent DataStore for Dart applications.
Oobium DataStore #
Data for Dart...
Usage #
To use this plugin, add oobium_datastore
as a dependency in your pubspec.yaml file.
To use the code generation features, add oobium_datastore_gen
as a dev dependency in your pubspec.yaml file.
Example #
Create a schema, generate your datastore and models #
main.schema:
Author
name String
Book
title String
author Author
# dart
> dart run build_runner build
# flutter
> flutter pub run build_runner build
import 'package:oobium_datastore/oobium_datastore.dart';
void main() {
// TODO
}