Answers for "dart convert string to double with two decimal places"

3

double variable into 2 decimal places flutter

double num1 = double.parse((12.3412).toStringAsFixed(2));
// 12.34

double num2 = double.parse((12.5668).toStringAsFixed(2));
// 12.57

double num3 = double.parse((-12.3412).toStringAsFixed(2));
// -12.34

double num4 = double.parse((-12.3456).toStringAsFixed(2));
// -12.35
Posted by: Guest on November-29-2020
9

string to double dart

// String -> double
main () {
    var onePointOne = double.parse('1.1');
    print(onePointOne == 1.1); // prints true
}
Posted by: Guest on May-05-2020

Code answers related to "dart convert string to double with two decimal places"

Browse Popular Code Answers by Language