mergeData method

Future<void> mergeData({
  1. required String table,
  2. required String on,
  3. required DatasetRows records,
  4. List<String>? namespace,
  5. String? branch,
})

Implementation

Future<void> mergeData({
  required String table,
  required String on,
  required DatasetRows records,
  List<String>? namespace,
  String? branch,
}) async {
  await mergeDataStream(table: table, on: on, chunks: Stream.fromIterable(_rowChunks(records)), namespace: namespace, branch: branch);
}