mergeData method
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);
}