combine3<T1, T2, T3, R> static method
Implementation
static RxComputed<R> combine3<T1, T2, T3, R>(
Rx<T1> rx1,
Rx<T2> rx2,
Rx<T3> rx3,
R Function(T1, T2, T3) combiner,
) {
return computed(() => combiner(rx1.value, rx2.value, rx3.value));
}