ParsedColumnarBuffer constructor
const
ParsedColumnarBuffer({})
Creates a new ParsedColumnarBuffer instance.
The version is the protocol version.
The flags contains protocol flags.
The columnCount is the number of columns.
The rowCount is the number of rows.
The compressionEnabled indicates if compression is enabled.
The columns list contains metadata and data for each column.
Implementation
const ParsedColumnarBuffer({
required this.version,
required this.flags,
required this.columnCount,
required this.rowCount,
required this.compressionEnabled,
required this.columns,
});