SqliteRows class final

A query result: column names plus rows as column→value maps.

Constructors

SqliteRows({required List<String> columns, required List<Map<String, Object?>> rows, bool truncated = false})
Creates a result.
const

Properties

columns List<String>
Column names in result order.
final
hashCode int
The hash code for this object.
no setterinherited
rows List<Map<String, Object?>>
Rows keyed by column name (duplicate names: last value wins).
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
truncated bool
Whether more rows were available beyond the requested cap.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited