Valuable<Output>.byValuer constructor

  1. @deprecated
Valuable<Output>.byValuer(
  1. ValuableParentWatcher<Output> valuer, {
  2. bool evaluateWithContext = false,
})

Replace by Valuable.computed.

Will be removed in future version. Keeping it at this moment is only for backward compatibility.

Implementation

@deprecated
factory Valuable.byValuer(ValuableParentWatcher<Output> valuer,
    {bool evaluateWithContext = false}) {
  return Valuable.computed(valuer, evaluateWithContext: evaluateWithContext);
}