deleteMany abstract method

Future<void> deleteMany(
  1. SyncScope scope,
  2. List<Id> ids
)

Delete semantics within the given scope:

  • If supportsSoftDelete is true, mark items as deleted (e.g., set deletedAt) and keep rows.
  • Otherwise, remove rows permanently (hard delete).

Implementation

Future<void> deleteMany(SyncScope scope, List<Id> ids);