RDBDeleteDelegate class
A delegate class to delete documents in RDB.
- Implemented types
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.
  override
- 
  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.
  override
- 
  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.
  override
- 
  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.
  override
- 
  oneWithID(Type type, String documentID, {String? subcollection}) → Future< void> 
- 
  Deletes a document from RDB by its type and document ID.
  override
- 
  toString() → String 
- 
  A string representation of this object.
  inherited
Operators
- 
  operator ==(Object other) → bool 
- 
  The equality operator.
  inherited