VersionCommandConfigs constructor

const VersionCommandConfigs({
  1. String? branch,
  2. String? message,
  3. bool includeScopes = true,
  4. bool linkToCommits = false,
  5. bool includeCommitId = false,
  6. bool includeCommitBody = false,
  7. bool commitBodyOnlyBreaking = true,
  8. bool updateGitTagRefs = false,
  9. bool releaseUrl = false,
  10. List<AggregateChangelogConfig>? aggregateChangelogs,
  11. bool fetchTags = true,
  12. VersionLifecycleHooks hooks = VersionLifecycleHooks.empty,
})

Implementation

const VersionCommandConfigs({
  this.branch,
  this.message,
  this.includeScopes = true,
  this.linkToCommits = false,
  this.includeCommitId = false,
  this.includeCommitBody = false,
  this.commitBodyOnlyBreaking = true,
  this.updateGitTagRefs = false,
  this.releaseUrl = false,
  List<AggregateChangelogConfig>? aggregateChangelogs,
  this.fetchTags = true,
  this.hooks = VersionLifecycleHooks.empty,
}) : _aggregateChangelogs = aggregateChangelogs;