run method

  1. @override
Future<void> run()
override

Runs this command.

The return value is wrapped in a Future if necessary and returned by CommandRunner.runCommand.

Implementation

@override
Future<void> run() async {
  await ConfigService.showConfig();

  print('\n💡 Tips:');
  print('• Run "udara_cli setup" to modify these settings');
  print(
      '• Use --slack-channel parameter in build command to specify channel');
  print('• Run "udara_cli setup --reset" to reset all settings');
}