Last updated:
0 purchases
firedart repository
Firebase Repository for Dart #
Use this database adapter for firebase to integrate with database_repository
Using Flutter? #
Use firebase_database_repository as it is optimized for usage with Flutter
How to install #
dart pub add firedart_repository
copied to clipboard
How to use #
void main() async {
// You can find this in your firebase project settings
final myFirebaseProjectId = "";
final myDatabaseAdapter = FiredartDatabaseAdapter(firebaseProjectId: myFirebaseProjectId)
// Register a Database Adapter that you want to use.
DatabaseAdapterRegistry.register(myDatabaseAdapter);
final repository = DatabaseRepository.fromRegistry(serializer: mySerializer, name: 'firebase');
// Now use some methods such as create() etc.
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.