CommandExecutionEvent constructor

const CommandExecutionEvent({
  1. required String commandName,
  2. required CommandCategory category,
  3. required String args,
  4. required bool isError,
  5. required DateTime timestamp,
})

Implementation

const CommandExecutionEvent({
  required this.commandName,
  required this.category,
  required this.args,
  required this.isError,
  required this.timestamp,
});