CappManager constructor

CappManager({
  1. required CappController main,
  2. required List<String> args,
  3. 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,
});