Skip to content

Instantly share code, notes, and snippets.

@felangel
Created January 21, 2019 20:18
Show Gist options
  • Save felangel/b52c7c8cfd49273b73f424276efdec72 to your computer and use it in GitHub Desktop.
Save felangel/b52c7c8cfd49273b73f424276efdec72 to your computer and use it in GitHub Desktop.
[github_search] Github User Model
class GithubUser {
final String login;
final String avatarUrl;
const GithubUser({this.login, this.avatarUrl});
static GithubUser fromJson(dynamic json) {
return GithubUser(
login: json['login'] as String,
avatarUrl: json['avatar_url'] as String,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment