Command constructor

const Command({
  1. required String name,
  2. required String description,
  3. required String scope,
  4. bool? everyone,
  5. bool? dmChannel,
})

Implementation

const Command ({ required this.name, required this.description, required this.scope, this.everyone, this.dmChannel });