toDouble method

double toDouble ()

Parse this string as an double literal and return its value.

Implementation

double toDouble() {
  return double.parse(this);
}