Event constructor
Event(})
Implementation
Event(
this.name, {
this.description,
this.fullName,
this.isCommand,
this.parameters = const {},
}) {
if (name.isEmpty) {
throw ArgumentError('The name must not be empty');
}
}