float function

double float(
  1. String str
)

Implementation

double float(String str) {
    return double.parse(str);
}