Skip to content

Instantly share code, notes, and snippets.

@Nash0x7E2
Created September 27, 2018 00:11
Show Gist options
  • Save Nash0x7E2/c5de15b576eeb794d2ab82d1a5c52e23 to your computer and use it in GitHub Desktop.
Save Nash0x7E2/c5de15b576eeb794d2ab82d1a5c52e23 to your computer and use it in GitHub Desktop.
class UserModel{
UserModel({this.firstName, this.lastName, this.profileImageUrl});
String firstName;
String lastName;
String profileImageUrl;
}
List<UserModel> listData = [
UserModel(
firstName: "Nash",
lastName: "Ramdial",
profileImageUrl: "https://pbs.twimg.com/profile_images/1035253589894197256/qNuF8w6e_400x400.jpg",
),
UserModel(
firstName: "Scott",
lastName: "Stoll",
profileImageUrl: "https://pbs.twimg.com/profile_images/997431887286030336/QinQPXjS_400x400.jpg",
),
UserModel(
firstName: "Simon",
lastName: "Lightfoot",
profileImageUrl: "https://pbs.twimg.com/profile_images/1017532253394624513/LgFqlJ4U_400x400.jpg",
),
UserModel(
firstName: "Jay",
lastName: "Meijer",
profileImageUrl: "https://pbs.twimg.com/profile_images/1000361976361611264/Ty8LbTKx_400x400.jpg",
),
UserModel(
firstName: "Mariano",
lastName: "Zorrilla",
profileImageUrl:
"https://ca.slack-edge.com/TADUGCD9D-UC5F6HJ6T-gfbe5883d03f-1024",
),
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment