operator == method

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

//////////// ////////////

Implementation

// II.E - Equality & Hashcode
///////////////
@override
bool operator ==(Object other) =>
    identical(this, other) ||
    other is RaliPosition &&
        lng == other.lng &&
        lat == other.lat;