rxLast property
RxComputed<T?>
get
rxLast
Get last element (or null)
Implementation
RxComputed<T?> get rxLast => // coverage:ignore-line
computed(
() => value.isNotEmpty ? value.last : null);