lxStatic property

LxAsyncComputed<T> get lxStatic

Transforms this async function into a LxAsyncComputed value with static dependencies.

The dependency graph is built only once.

Implementation

LxAsyncComputed<T> get lxStatic =>
    LxComputed.async<T>(this, staticDeps: true);