listener property

void Function(ProviderTransformer<InT, ValueT> self, AsyncResult<InT> prev, AsyncResult<InT> next) listener
final

A callback invoked when the source changes after the initial event.

It will not be called with the initial value.

Implementation

final void Function(
  ProviderTransformer<InT, ValueT> self,
  AsyncResult<InT> prev,
  AsyncResult<InT> next,
)
listener;