AbstractCommand<T extends CommandInteraction> constructor

AbstractCommand<T extends CommandInteraction>(
  1. Display _label,
  2. Display _description,
  3. CommandScope? scope
)

Implementation

AbstractCommand(this._label, this._description, CommandScope? scope) {
  _scope = scope ?? CommandScope.guild;
}