CappManager constructor
CappManager({
- required CappController main,
- required List<
String> args, - required List<
CappController> controllers,
The constructor of the CappManager class.
The main is the main controller of the application.
The args is a list of arguments that passed to the application from the console.
The controllers is a list of controllers that can be called from the console.
Implementation
CappManager({
required this.main,
required this.args,
required this.controllers,
});