Command constructor

Command({
  1. required String commandId,
  2. required String commandName,
  3. required Map<String, dynamic> args,
})

Implementation

Command({
  required this.commandId,
  required this.commandName,
  required this.args,
});