firebase_database library

Classes

DatabaseError
A DatabaseError contains code, message and details of a Firebase Database Error that results from a transaction operation at a Firebase Database location.
DatabaseReference
DatabaseReference represents a particular location in your Firebase Database and can be used for reading or writing data to that location.
DataSnapshot
A DataSnapshot contains data from a Firebase Database location. Any time you read Firebase data, you receive the data as a DataSnapshot.
Event
Event encapsulates a DataSnapshot and possibly also the key of its previous sibling, which can be used to order the snapshots.
FirebaseDatabase
The entry point for accessing a Firebase Database. You can get an instance by calling FirebaseDatabase.instance. To access a location in the database and read or write data, use reference().
MutableData
OnDisconnect
Query
Represents a query over the data at a particular location.
ServerValue
TransactionResult

Typedefs

TransactionHandler = (Future<MutableData?>? Function(MutableData? mutableData)?)