isNewerThan method

bool isNewerThan(
  1. State other
)
inherited

Check if this state is newer than another state

Implementation

bool isNewerThan(State other) {
  return _version > other._version;
}