Accept typedef

Accept = void Function<Value, T>({Apply<T>? apply, Perform<T>? perform, required Watch<Value, T> watch})

Function for performing accepting mechanism.

Implementation

typedef Accept = void Function<Value, T>({
  required Watch<Value, T> watch,
  Apply<T>? apply,
  Perform<T>? perform,
});