me.dart 320 B

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