operator == method

  1. @override
bool operator ==(
  1. Object other
)
inherited

Implementation

@override
bool operator ==(Object other) =>
    other is PortReference &&
    other.port == port &&
    other.module == module &&
    other.toString() == toString();