ParsedRowBuffer constructor

const ParsedRowBuffer({
  1. required List<ColumnMetadata> columns,
  2. required List<List> rows,
  3. required int rowCount,
  4. required int columnCount,
})

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,
});