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