Created
August 6, 2018 06:59
-
-
Save rohan20/4616ea917e5f2bf1a119ab855e2344ab to your computer and use it in GitHub Desktop.
E-Commerce app using Flutter - Part 1: The User Interface
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ProductsListItem({Key key, | |
this.name, | |
this.currentPrice, | |
this.originalPrice, | |
this.discount, | |
this.imageUrl}) | |
: super(key: key); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment