RepoSource constructor

RepoSource({
  1. String? branchName,
  2. String? commitSha,
  3. String? dir,
  4. String? projectId,
  5. String? repoName,
  6. String? tagName,
})

Implementation

RepoSource({
  this.branchName,
  this.commitSha,
  this.dir,
  this.projectId,
  this.repoName,
  this.tagName,
});