containsEqualData method

bool containsEqualData(
  1. SystemMessage other
)

Implementation

bool containsEqualData(SystemMessage other) {
  return areaCeiling == other.areaCeiling &&
      areaCount == other.areaCount &&
      areaFloor == other.areaFloor &&
      areaRadius == other.areaRadius &&
      uaClassification == other.uaClassification &&
      timestamp == other.timestamp &&
      operatorAltitude == other.operatorAltitude &&
      operatorLocationType == other.operatorLocationType &&
      operatorLocation == other.operatorLocation;
}