select<U> method

Computed<U> select<U>(
  1. U getter(
    1. T value
    )
)

Creates a Computed that selects a value from the notifier.

Implementation

Computed<U> select<U>(U Function(T value) getter) {
  return Computed(() => getter(value));
}