isEqual method

bool isEqual(
  1. Object other
)

Implementation

bool isEqual(Object other) =>
    identical(this, other) ||
    other is Command &&
        runtimeType == other.runtimeType &&
        script == other.script &&
        description == other.description &&
        requiredParams == other.requiredParams &&
        optionalParams == other.optionalParams &&
        override == other.override &&
        switches == other.switches &&
        defaultSwitch == other.defaultSwitch;