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