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