removeAll method

Future<void> removeAll(
  1. List<E> entities
)

Remove a list of entities in the data backend.

Implementation

Future<void> removeAll(List<E> entities) async {
  await _adapter.removeAll(
    table,
    primaryColumn,
    entities.map((e) => e.toJSON()).toList(),
  );
}