mapList<R> method

RxComputed<List<R>> mapList<R>(
  1. R mapper(
    1. T
    )
)

Map list reactively

Implementation

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