nextPatch property
      
      PackageVersionNumberGeneralLibrary
      get
      nextPatch
      
    
    
Gets the next patch version number that follows this one.
If this version is a pre-release, then it just strips the pre-release suffix. Otherwise, it increments the patch version.
Implementation
PackageVersionNumberGeneralLibrary get nextPatch {
  if (isPreRelease) {
    return PackageVersionNumberGeneralLibrary(major, minor, patch);
  }
  return _incrementPatch();
}