Command constructor

Command({
  1. Type? type,
  2. String? prefix,
  3. String? notprefix,
  4. String? command,
  5. required Callback callback,
})

Implementation

Command({
  this.type,
  this.prefix,
  this.notprefix,
  this.command,
  required this.callback,
});