me.dart 280 B

1234567891011121314151617
  1. class Profile {
  2. String name;
  3. String avatar;
  4. String account;
  5. Profile({
  6. this.name,
  7. this.account,
  8. this.avatar
  9. });
  10. }
  11. Profile me = new Profile(
  12. name: 'wkiwi',
  13. avatar:'https://avatars3.githubusercontent.com/u/35719531?s=460&v=4',
  14. account: 'WZ610935700'
  15. );