CommandContext constructor

CommandContext({
  1. required dynamic framework,
  2. required String userId,
  3. required String guildId,
  4. required String channelId,
  5. required List<String> args,
  6. required List<String> userRoles,
})

Implementation

CommandContext({
  required this.framework,
  required this.userId,
  required this.guildId,
  required this.channelId,
  required this.args,
  required this.userRoles,
});