RepoCapabilities constructor

const RepoCapabilities({
  1. bool canWrite = false,
  2. bool canGitMutate = false,
  3. bool supportsGit = false,
  4. bool isRemote = false,
})

Implementation

const RepoCapabilities({
  this.canWrite = false,
  this.canGitMutate = false,
  this.supportsGit = false,
  this.isRemote = false,
});