AsyncEffect<S, R> typedef

AsyncEffect<S, R> = Future<R> Function(ResultNotifier<R> notifier, S input)

Signature for functions used by AsyncEffectNotifier to execute an action that returns data Future, using the data of a source ResultNotifier as input.

Implementation

typedef AsyncEffect<S, R> = Future<R> Function(ResultNotifier<R> notifier, S input);