use property
T
get
use
Returns the result of this future. Subscribes to it if it has not been resolved yet.
Can only be used inside computations. If the future gets resolved with an error, throws it. Throws NoValueException if this future has not been resolved yet.
Implementation
T get use => FutureComputedExtensionImpl<T>(this).use;