Skip to content

Instantly share code, notes, and snippets.

@soonsam123
Created September 22, 2019 17:13
Show Gist options
  • Save soonsam123/ff8c1b0bcd95a5d59764e30c0acc9354 to your computer and use it in GitHub Desktop.
Save soonsam123/ff8c1b0bcd95a5d59764e30c0acc9354 to your computer and use it in GitHub Desktop.
import 'package:equatable/equatable.dart';
class User extends Equatable {
final String login;
final int id;
User({this.login, this.id});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment