deleteMany abstract method
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);