Last active
February 22, 2020 04:19
-
-
Save digitaljoni/3e8b5791e6bfb2b453f4df25a3cacbaf to your computer and use it in GitHub Desktop.
toString()
This file contains hidden or 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
| void main() { | |
| final int itemQuantity = 123; | |
| final double itemPrice = 3499.55; | |
| final bool isDiscounted = true; | |
| final List<String> countries = ['US', 'UK', 'MX', 'TH', 'PH', 'HK']; | |
| print(itemQuantity.toString()); | |
| print(itemPrice.toString()); | |
| print(isDiscounted.toString()); | |
| print(countries.toString()); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment