isSameVersion method

bool isSameVersion(
  1. State other
)
inherited

Check if this state is the same version as another state

Implementation

bool isSameVersion(State other) {
  return _version == other._version;
}