GithubDeveloperItem constructor

GithubDeveloperItem({
  1. required String avatar,
  2. required String name,
  3. required String username,
  4. required String popularRepoName,
  5. required String popularRepoDescription,
})

Create an instance for a trending developer.

Implementation

GithubDeveloperItem({
  required this.avatar,
  required this.name,
  required this.username,
  required this.popularRepoName,
  required this.popularRepoDescription,
});