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