versionInt method

int versionInt()

Implementation

int versionInt() {
  return this.major * 1000 +
      this.minor * 100 +
      this.patch * 10 +
      (this.minorPatch != null ? this.minorPatch! : 0);
}