CommandLog constructor
CommandLog(
- String action,
- Command cmd, {
- bool isClient = false,
- CommandResult? result,
Implementation
CommandLog(this.action, Command cmd, {this.isClient = false, CommandResult<dynamic>? result})
: super(cmd.toLog() + (result != null ? '\nRESULT:\n${result.toLog()}' : ''));