RDBDeleteDelegate class
A delegate class to delete documents in RDB.
Constructors
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
-
all(
Type type, {required bool iAmSure, String? subcollection}) → Future< void> - Deletes all documents of a specific type from RDB.
-
many<
T> (List< T> objects, {String? subcollection}) → Future<void> - Deletes multiple documents from RDB from a list of objects. Uses a batch operation for efficiency.
-
manyWithIDs(
Type type, List< String> documentIDs, {String? subcollection}) → Future<void> - Deletes multiple documents from the RDB by their type and a list of document IDs.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
one(
dynamic object, {String? subcollection}) → Future< void> - Deletes a document in RDB from the given object.
-
oneWithID(
Type type, String documentID, {String? subcollection}) → Future< void> - Deletes a document from RDB by its type and document ID.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited