$ComputedHandler<T> constructor

$ComputedHandler<T>({
  1. required T funcInvokeUserFunction(),
})

Implementation

$ComputedHandler({ required this.funcInvokeUserFunction }) {
	this._sub = this._observer.listen((evt) {
		this._markAsDirty();
	});
}