rxFirst property

RxComputed<T?> get rxFirst

Get first element (or null)

Implementation

RxComputed<T?> get rxFirst => // coverage:ignore-line
    computed(
        () => value.isNotEmpty ? value.first : null);