getComputedValue method

  1. @override
Future<T> getComputedValue(
  1. LxReactive computed
)
override

Extracts the current value from the computed instance.

Implementation

@override
Future<T> getComputedValue(LxReactive computed) {
  return (computed as LxAsyncComputed<T>).wait;
}