isEqual static method

bool isEqual(
  1. ILatLong me,
  2. ILatLong other
)

Implementation

static bool isEqual(ILatLong me, ILatLong other) {
  if (me.latitude == other.latitude && me.longitude == other.longitude) return true;
  return false;
}