CommandParent constructor

CommandParent(
  1. String _name,
  2. List<Command> _children, {
  3. List<String> alias = const [],
  4. String hint = '',
})

Implementation

CommandParent(
  this._name,
  this._children, {
  List<String> alias = const [],
  String hint = '',
}) {
  _alias = alias;
  _hint = hint;
}