bulkCreate method

  1. @override
Future<List<String>?> bulkCreate(
  1. covariant List<Map> entities
)
override

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

Implementation

@override
Future<List<String>?> bulkCreate(covariant List<Map> entities) async =>
    await Invoker.post('/data/bulk/$tableName', entities);