merge method

Implementation

CommandsConfig merge(CommandsConfig other) {
  return CommandsConfig(
    mode: other.mode,
    allowed: {...allowed, ...other.allowed}.toList(),
    blocked: {...blocked, ...other.blocked}.toList(),
  );
}