putMany abstract method

Future<List<Map<String, dynamic>>> putMany({
  1. required List<Object> items,
})

Stores a list if items in the database.

It will update an item if the key already exists. Throw an DetaException if you attempt to put more than 25 items.

Implementation

Future<List<Map<String, dynamic>>> putMany({required List<Object> items});