containsEqualData method

bool containsEqualData(
  1. LocationMessage other
)

Implementation

bool containsEqualData(LocationMessage other) {
  return timestamp == other.timestamp &&
      location?.latitude == other.location?.latitude &&
      location?.longitude == other.location?.longitude;
}