Skip to content

Instantly share code, notes, and snippets.

@raushankrjha
Created September 13, 2019 19:19
Show Gist options
  • Save raushankrjha/f72e65761f6559874416fd60c4b6a2da to your computer and use it in GitHub Desktop.
Save raushankrjha/f72e65761f6559874416fd60c4b6a2da to your computer and use it in GitHub Desktop.
main()
{
// String to int
var one = int.parse('1');
print(one);
// String to double
var onePointOne = double.parse('1.1');
print(onePointOne);
// int to String
String twenty = 20.toString();
print(twenty);
// double to String
String pi= 3.14316.toStringAsFixed(2);
print(pi);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment