parseFloat function

double parseFloat(
  1. String n
)

Implementation

double parseFloat(String n) {
  return double.parse(n);
}