bulkCreate abstract method

Future<List<String>?> bulkCreate(
  1. List<T> entities
)

Creates multiple objects in the database. The API returns a list of object IDs for the objects created in the database.

Implementation

Future<List<String>?> bulkCreate(List<T> entities);