GitVersionerConfig constructor

GitVersionerConfig(
  1. String? baseBranch,
  2. String? repoPath,
  3. int yearFactor,
  4. int stopDebounce,
  5. String? name,
  6. String rev,
)

Implementation

GitVersionerConfig(this.baseBranch, this.repoPath, this.yearFactor, this.stopDebounce, this.name, this.rev)
    : assert(yearFactor >= 0),
      assert(stopDebounce >= 0),
      assert(rev.isNotEmpty);