insertData method

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

Implementation

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