insertTable method

Future<void> insertTable({
  1. required String table,
  2. required ArrowTable records,
})

Implementation

Future<void> insertTable({required String table, required ArrowTable records}) {
  return client.insertTable(database: database, table: table, records: records, namespace: namespace);
}