hasNewerVersion property
bool
get
hasNewerVersion
Implementation
bool get hasNewerVersion {
if (latestVersion == null) return false;
return _compareVersions(currentVersion, latestVersion!) < 0;
}