Skip to content

Row

extension type Row(IList<Object?>)

Alias type for IList<Object?> used to abstract row types used by different database drivers.

Constructors

Row()

Row(IList<Object?> _columns)

Properties

length no setter

int get length

The number of columns in this row.

Implementation
dart
int get length => _columns.length;

Operators

operator

Object? operator [](int index)

Returns the column value at index, or throws if out of range.

Implementation
dart
Object? operator [](int index) => _columns[index];