1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-09 21:19:55 +00:00

updated: using_listview example with working implementation

This commit is contained in:
Nishant Srivastava
2018-01-20 03:23:01 +05:30
parent b1644e96f3
commit b4110ca438
5 changed files with 85 additions and 13 deletions

View File

@@ -0,0 +1,6 @@
class ContactModal {
final String fullName;
final String email;
const ContactModal({this.fullName, this.email});
}