lx property
LxComputed<T>
get
lx
Transforms this function into a LxComputed value.
final count = 0.lx;
final doubled = (() => count.value * 2).lx;
Implementation
LxComputed<T> get lx => LxComputed<T>(this);