parseFloat function

double? parseFloat(
  1. String input
)

Implementation

double? parseFloat(String input) {
  return double.tryParse(input);
}