Contributor constructor

Contributor({
  1. required String login,
  2. required String avatarUrl,
  3. required String htmlUrl,
  4. required String type,
})

Creates a Contributor instance.

Implementation

Contributor({
  required this.login,
  required this.avatarUrl,
  required this.htmlUrl,
  required this.type,
});