GitHubCodeDestination constructor

GitHubCodeDestination({
  1. required bool issuesEnabled,
  2. required String name,
  3. required String owner,
  4. required bool privateRepository,
  5. required String token,
  6. required String type,
  7. String? description,
})

Implementation

GitHubCodeDestination({
  required this.issuesEnabled,
  required this.name,
  required this.owner,
  required this.privateRepository,
  required this.token,
  required this.type,
  this.description,
});