GithubUserItem constructor

GithubUserItem({
  1. required String name,
  2. required String avatar,
})

Create an instance of a contributor or owner for a trending repository.

Implementation

GithubUserItem({
  required this.name,
  required this.avatar,
});