delete method

Future<List<CloudStorageEntry>> delete(
  1. Session session,
  2. List<CloudStorageEntry> rows, {
  3. Transaction? transaction,
})

Deletes all CloudStorageEntrys in the list and returns the deleted rows. This is an atomic operation, meaning that if one of the rows fail to be deleted, none of the rows will be deleted.

Implementation

Future<List<CloudStorageEntry>> delete(
  _i1.Session session,
  List<CloudStorageEntry> rows, {
  _i1.Transaction? transaction,
}) async {
  return session.db.delete<CloudStorageEntry>(
    rows,
    transaction: transaction,
  );
}