WithController<C> constructor

const WithController<C>({
  1. required ControllerCreator<C> controller,
  2. required WidgetControllerBuilder<C> builder,
  3. List<ReactionCreator<C>> reactions = const [],
  4. ControllerDisposer<C>? disposer,
  5. Key? key,
})

Implementation

const WithController({
  required this.controller,
  required this.builder,
  this.reactions = const [],
  this.disposer,
  Key? key,
}) : super(key: key);