collect method
Collects and returns the value produced by this wizard step.
Implementation
@override
bool collect() {
LoggerService.blank();
LoggerService.info('Tooling');
return PromptService.confirm(
'Use FVM?',
defaultValue: false,
);
}