Creates a Computed that selects a value from the notifier.
Computed<U> select<U>(U Function(T value) getter) { return Computed(() => getter(value)); }