Repository constructor

Repository({
  1. required String defaultBranch,
  2. required String htmlUrl,
  3. required String id,
  4. required bool isAuthenticationEnabled,
  5. required Owner owner,
  6. required String provider,
  7. String? language,
  8. String? publicSshKey,
  9. String? username,
})

Implementation

Repository({
  required this.defaultBranch,
  required this.htmlUrl,
  required this.id,
  required this.isAuthenticationEnabled,
  required this.owner,
  required this.provider,
  this.language,
  this.publicSshKey,
  this.username,
});