firebase_dart_plus 0.1.0+4 copy "firebase_dart_plus: ^0.1.0+4" to clipboard
firebase_dart_plus: ^0.1.0+4 copied to clipboard

Some additional features for the `firebase_dart` package.

❤️ sponsor

Some additional features for the firebase_dart package.

Features #

Write batches for realtime database #

A WriteBatch is a series of write operations to be performed as one unit.

Operations done on a WriteBatch do not take effect until you commit().

Example code:


var db = FirebaseDatabase(app: app, databaseURL: 'mem://some.name/');
var batch = db.batch();

var ref = batch.reference();

await ref.child('some/path').set('value1');
await ref.child('some/other/path').set('value2');

await batch.commit();

0
likes
100
pub points
63%
popularity

Publisher

unverified uploader

Some additional features for the `firebase_dart` package.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

firebase_dart, rxdart, sortedmap

More

Packages that depend on firebase_dart_plus