HookCoordinator<T> constructor

const HookCoordinator<T>({
  1. Key? key,
  2. required T use(),
  3. required Widget builder(
    1. T
    ),
})

Implementation

const HookCoordinator({
  super.key,
  required this.use,
  required this.builder,
});