firstRowOrNull property

Map<String, Object?>? get firstRowOrNull

First row as a map, or null when isEmpty.

Implementation

Map<String, Object?>? get firstRowOrNull => isEmpty ? null : rowAsMap(0);