Oobium DataStore

pub package

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
}

Libraries

oobium_datastore