Commander class

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

dart(String command, List<String> args) Future<void>
error(String message) Future<void>
flutter(String command, List<String> args) Future<void>
info(String message) Future<void>
prompt(String question, {bool required = false}) Future<String>
promptChoose(String question, List<String> options) Future<String>
promptChooseMultiple(String question, List<String> options) Future<List<String>>
promptYesNo(String question) Future<bool>
run(String command, List<String> args) Future<void>
table(List<List<String>> rows, {List<String>? header}) Future<void>