merge method

Future<void> merge({
  1. required String table,
  2. required String on,
  3. required List<Map<String, dynamic>> records,
  4. List<String>? namespace,
})

Implementation

Future<void> merge({
  required String table,
  required String on,
  required List<Map<String, dynamic>> records,
  List<String>? namespace,
}) async {
  await mergeStream(table: table, on: on, chunks: Stream.fromIterable(_rowChunks(records)), namespace: namespace);
}