RDBWriteBatch class

Emulates a write batch (similar to Firestore), for the RDB.

Constructors

RDBWriteBatch()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

create<T>(List<T> objects, {String? subcollection}) Future<void>
Writes objects to the RDB using a single operation.
delete<T>(List<T> objects, {String? subcollection}) Future<void>
Deletes objects in the RDB using a single operation.
deleteWithIDs(Type type, List<String> ids, {String? subcollection}) Future<void>
Deletes objects in the RDB using a single operation.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
update<T>(List<T> objects, {String? subcollection}) Future<void>
Updates objects in the RDB using a single operation.

Operators

operator ==(Object other) bool
The equality operator.
inherited