toComputedValuable<T> method

Valuable<T> toComputedValuable<T>(
  1. T computation(
    1. L listenable
    )
)

Method to transform a ValueListenable to a Valuable

Implementation

Valuable<T> toComputedValuable<T>(T computation(L listenable)) =>
    Valuable.listenableComputed(this, computation);