ever<T> static method
Convenience methods with improved type inference
Implementation
static ZenWorkerHandle ever<T>(
ValueNotifier<T> obs,
void Function(T) callback,
) {
return watch<T>(obs, callback, type: WorkerType.ever);
}