GitHubRepoConfig constructor
Creates a new GitHubRepoConfig instance.
name is the display name for the repository.
githubUrl is the GitHub URL where the bricks are located.
authToken is optional and only needed for private repositories.
Implementation
GitHubRepoConfig({
required this.name,
required this.githubUrl,
this.authToken,
});