Poller<T> constructor
Poller<T> ({})
Implementation
factory Poller({
required void Function(T) onResult,
Function? onError,
String? debugLabel,
required Future<Vote<T>> Function() poll,
Duration? delay,
}) = PollerFromHandlers;