Skip to content

Row

extension typeRow(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

intgetlength

The number of columns in this row.

Implementation
dart
int get length => _columns.length;

Operators

operator []()

Object?operator [](intindex)

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

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