createTableWithSchema method

Future<void> createTableWithSchema({
  1. required String name,
  2. required ArrowSchema schema,
  3. SqliteArrowBatches? batches,
  4. SqliteCreateMode mode = SqliteCreateMode.create,
})

Implementation

Future<void> createTableWithSchema({
  required String name,
  required ArrowSchema schema,
  SqliteArrowBatches? batches,
  SqliteCreateMode mode = SqliteCreateMode.create,
}) {
  return client.createTableWithSchema(database: database, name: name, schema: schema, batches: batches, mode: mode, namespace: namespace);
}