Installation
To install the base package, modify your pubspec.yaml
to include following packages:
Following additional packages are available for your convenience:
dogs_built: any # Support for built_value converters
dogs_yaml: any # Support for YAML files
dogs_toml: any # Support for TOML files
dogs_cbor: any # Support for CBOR files
After adding the packages, run pub get
to download the packages and pub run build_runner build
to generate the dogs.g.dart
reactor file.
After this, you just need to load the dogs engine from your entrypoint of choice:
import 'package:dogs_core/dogs_core.dart';
import 'dogs.g.dart';
Future main() async {
await initialiseDogs();
// [...]
}
Use build_runner watch
When working with the dogs engine, it is recommended to use build_runner watch
to
automatically generate the dogs.g.dart
file and *.conv.g.dart
files when you make changes
to your models. Changing the model and forgetting to run build_runner
will not always result
in exceptions, but it will result in unexpected behaviour as the generated code will not match
the current model.