GitHubRepo constructor

GitHubRepo({
  1. required int id,
  2. required String name,
  3. required String fullName,
  4. required GitHubUser owner,
  5. required bool private,
  6. String? description,
  7. required bool fork,
  8. required String htmlUrl,
})

Implementation

GitHubRepo(
    {required this.id,
    required this.name,
    required this.fullName,
    required this.owner,
    required this.private,
    this.description,
    required this.fork,
    required this.htmlUrl});