GitHubRepositoryInfo constructor

const GitHubRepositoryInfo({
  1. required String owner,
  2. required String repo,
  3. required String branch,
  4. required String target,
  5. required String targetPath,
})

Creates a new GitHubRepositoryInfo instance with the given parameters.

  • owner: The owner of the GitHub repository
  • repo: The name of the GitHub repository
  • branch: The branch name in the repository
  • target: The target file or directory name
  • targetPath: The path within the repository

Implementation

const GitHubRepositoryInfo({
  required this.owner,
  required this.repo,
  required this.branch,
  required this.target,
  required this.targetPath,
});