rows property

List<Map<String, Object?>> get rows

Returns a defensive copy of the current adapter rows.

Implementation

List<Map<String, Object?>> get rows =>
    _rows.map((entry) => Map<String, Object?>.of(entry.values)).toList();