wizardController property

WizardController wizardController

Getter for the wizard controller.

Implementation

WizardController get wizardController => _wizardController;
void wizardController=(WizardController wizardController)

Setter for the wizard controller. When set the onControllerReceived event will be fired.

Implementation

set wizardController(
  WizardController wizardController,
) {
  _wizardController = wizardController;
  onControllerReceived(wizardController);
}