FlutterReleaseCommandRunner constructor

FlutterReleaseCommandRunner()

Implementation

FlutterReleaseCommandRunner()
    : super('flutter_release',
          'A command line tool to build, release and publish Flutter applications.') {
  argParser.addFlag(
    verboseFlagArg,
    negatable: false,
    help: 'Noisy logging, including all shell commands executed.',
  );
  addCommand(BuildCommand());
  addCommand(PublishCommand());
  addCommand(PrepareCommand());
}