ParsedRowBuffer constructor
const
ParsedRowBuffer({})
Creates a new ParsedRowBuffer instance.
The columns list contains metadata for each column.
The rows list contains row data, where each row is a list of values.
The rowCount is the number of rows in the result set.
The columnCount is the number of columns in the result set.
Implementation
const ParsedRowBuffer({
required this.columns,
required this.rows,
required this.rowCount,
required this.columnCount,
});