ActionHandler<T> constructor

const ActionHandler<T>({
  1. required Stream<T> actionInput,
  2. required ValueChanged<T> actionResult,
  3. required Widget child,
  4. Key? key,
})

Implementation

const ActionHandler({
  required this.actionInput,
  required this.actionResult,
  required this.child,
  Key? key,
}) : super(key: key);