operator == method

bool operator ==(
  1. Object other
)
override

Actions are only deemed equivalent if they are the exact same Object

Implementation

bool operator ==(Object other) {
  return identical(this, other);
}