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