toDouble method
Parse this
string as an double literal and return its value.
Implementation
double toDouble() {
return double.parse(this);
}
Parse this
string as an double literal and return its value.
double toDouble() {
return double.parse(this);
}