isFloat method

bool isFloat({
  1. double? min,
  2. double? max,
})

Checks if the string represents a finite floating-point number.

Implementation

bool isFloat({double? min, double? max}) {
  return _isFloat(this, min, max);
}