CommandAdapter<T, S> constructor

CommandAdapter<T, S>(
  1. String name,
  2. String example,
  3. String desc,
  4. List<String> aliases,
  5. List<S> argParseConfigs,
)

adapter for command.

Implementation

CommandAdapter(
  this.name,
  this.example,
  this.desc,
  this.aliases,
  this.argParseConfigs,
) {
  argParser.addOptions();
}