map<R> method

RxComputed<R> map<R>(
  1. R mapper(
    1. T value
    )
)

Implementation

RxComputed<R> map<R>(R Function(T value) mapper) {
  return computed(() => mapper(value));
}