first property

Map<String, dynamic>? get first

Get first result or null

Implementation

Map<String, dynamic>? get first => data.isNotEmpty ? data.first : null;