Computed<T> constructor

Computed<T>(
  1. T _computeFn()
)

Creates a new Computed with the given computation function.

Implementation

Computed(this._computeFn);