ColumnMetadata constructor
Creates a new ColumnMetadata instance.
The name is the column name as returned from the database.
The odbcType is the ODBC SQL type code (e.g., 1=CHAR, 2=INTEGER).
Implementation
const ColumnMetadata({
required this.name,
required this.odbcType,
});