GitHubRepositoryInfo constructor
const
GitHubRepositoryInfo({})
Creates a new GitHubRepositoryInfo instance with the given parameters.
owner
: The owner of the GitHub repositoryrepo
: The name of the GitHub repositorybranch
: The branch name in the repositorytarget
: The target file or directory nametargetPath
: The path within the repository
Implementation
const GitHubRepositoryInfo({
required this.owner,
required this.repo,
required this.branch,
required this.target,
required this.targetPath,
});