hasUpdate property

  1. @override
bool get hasUpdate
override

Whether or not this object has been updated.

If true, then the data in this object differs from what is on the bridge.

Implementation

@override
bool get hasUpdate =>
    super.hasUpdate ||
    !identical(latitude, _originalLatitude) ||
    !identical(longitude, _originalLongitude);