addAllMap method

UpsertMany addAllMap(
  1. Iterable<Map<String, dynamic>> rows
)

Adds many rows to be inserted.

Implementation

UpsertMany addAllMap(Iterable<Map<String, dynamic>> rows) {
  _bulkValues.addAll(rows);
  return this;
}