saveAll abstract method

Future<List<E>> saveAll(
  1. List<E> entities
)

Saves all given entities to the database in a batch or sequential order.

Returns the list of saved entities.

Implementation

Future<List<E>> saveAll(List<E> entities);