collect method

  1. @override
bool collect()
override

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,
  );
}