transform<R> method
Transform this reactive value to another type
Implementation
RxComputed<R> transform<R>(R Function(T) mapper) {
return computed(() => mapper(value));
}
Transform this reactive value to another type
RxComputed<R> transform<R>(R Function(T) mapper) {
return computed(() => mapper(value));
}