Manager<T> constructor

Manager<T>({
  1. required PlannerConfig<T> config,
  2. required List<PlannerEntry<T>> entries,
})

Implementation

Manager({
  required this.config,
  required this.entries,
}) : controller = Controller<T>(config) {
  _buildEvents();
}