createTableWithSchema method
Create a new table with a specific schema.
Implementation
Future<void> createTableWithSchema({
required String name,
required Map<String, DataType> schema,
CreateMode mode = CreateMode.create,
List<String>? namespace,
Map<String, dynamic>? metadata,
}) {
return _createTable(name: name, schema: schema, mode: mode, namespace: namespace, metadata: metadata);
}