insert method

Future<void> insert({
  1. required String table,
  2. required List<Map<String, dynamic>> records,
  3. List<String>? namespace,
})

Implementation

Future<void> insert({required String table, required List<Map<String, dynamic>> records, List<String>? namespace}) async {
  await insertStream(table: table, chunks: Stream.fromIterable(_rowChunks(records)), namespace: namespace);
}