Cloud Firestore ODM
Notice
This page is archived and might not reflect the latest version of the FlutterFire plugins. You can find the latest information on GitHub:
https://github.com/firebase/flutterfire/tree/master/packages/cloud_firestore_odm
Alpha Status
The Cloud Firestore ODM is currently in alpha. Expect breaking changes, API changes and more. The documentation is still a work in progress. See the discussion for more details.
#
What is an ODM?The Object Document Mapper or ODM is an interface that treats a document as a tree structure wherein each node is an object representing a part of the document.
ODM methods allow programmatic access to the tree making it possible to change the structure, style or content of a document.
#
What does it do?The Cloud Firestore ODM package enables developers to build fully type-safe applications for Flutter using the FlutterFire Cloud Firestore plugin.
The ODM allows data schemas to be defined which represent the data structure of your Cloud Firestore database. By defining schemas the ODM provides the following benefits:
- โ๏ธ Bi-directional data validation.
- ๐ Type-safe data querying, supporting all Firestore query operations.
- ๐ Flutter Widgets for simple data binding with your data.
- ๐ฏ Data selectors to help avoid unnecessary Widget rebuilds.
- ๐ป Full API code completion.
#
Installation#
1. Use a recent Dart versionThe ODM relies on a recent Dart feature: generic annotations.
As such, to use the ODM you will need to upgrade your Dart SDK to enable this feature.
That is done by adding the following to your pubspec.yaml
:
#
2. FlutterFire InitializationBefore getting started, ensure you have initialized FlutterFire.
cloud_firestore
plugin#
3. Install The ODM depends on the cloud_firestore
plugin, so first ensure you have it installed on your project.
#
4. Install dependencyTo install the ODM, you'll need to install both the cloud_firestore_odm
and json_annotation
packages
from pub:
Next, install the build_runner
, cloud_firestore_odm_generator
& json_serializable
packages as development dependencies:
#
Next StepsOnce installed, read the documentation on defining models.