RepoConfig constructor

const RepoConfig({
  1. bool allowWrite = false,
  2. bool allowGitMutation = false,
  3. bool requireLineMatch = false,
  4. int maxFileBytes = 5 * 1024 * 1024,
  5. int maxResults = 1000,
  6. bool respectGitignore = true,
})

Implementation

const RepoConfig({
  this.allowWrite = false,
  this.allowGitMutation = false,
  this.requireLineMatch = false,
  this.maxFileBytes = 5 * 1024 * 1024,
  this.maxResults = 1000,
  this.respectGitignore = true,
});