insertData method
Future<void>
insertData({
- required String table,
- required DatasetRows records,
- List<
String> ? namespace, - 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);
}