- @override
Compares two Offsets for equality.
Source
@override bool operator ==(dynamic other) { if (other is! Offset) return false; final Offset typedOther = other; return _dx == typedOther._dx && _dy == typedOther._dy; }
Compares two Offsets for equality.
@override bool operator ==(dynamic other) { if (other is! Offset) return false; final Offset typedOther = other; return _dx == typedOther._dx && _dy == typedOther._dy; }