GitHubRepoConfig constructor

GitHubRepoConfig({
  1. required String name,
  2. required String githubUrl,
  3. String? authToken,
})

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,
});