Version constructor

const Version(
  1. int major,
  2. int minor,
  3. int patch
)

Create a version identifier.

Implementation

const Version(this.major, this.minor, this.patch);