firebase_dart_plus

Last updated:

0 purchases

firebase_dart_plus Image
firebase_dart_plus Images
Add to Cart

Description:

firebase dart plus

❤️ 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();

copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.