rxLast property

RxComputed<T?> get rxLast

Get last element (or null)

Implementation

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