rxFirst property

RxComputed<T?> get rxFirst

Get first element (or null)

Implementation

RxComputed<T?> get rxFirst =>
    computed(() => value.isNotEmpty ? value.first : null);