bool operator ==(
other
)

Returns true if this mirror is equal to other. Otherwise returns false. The equality holds if and only if (1) other is a mirror of the same kind and (2) the isolate being reflected by this mirror is the same isolate being reflected by other.

Source

/**
 * Returns [:true:] if this mirror is equal to [other].
 * Otherwise returns [:false:].
 * The equality holds if and only if
 * (1) [other] is a mirror of the same kind
 * and
 * (2) the isolate being reflected by this mirror is the same
 * isolate being reflected by [other].
 */
bool operator == (other);