eq method

  1. @override
Logic eq(
  1. dynamic other
)
override

Logical equality.

Implementation

@override
Logic eq(dynamic other) {
  _verifyCompatible(other);
  return super.eq(other);
}