isDouble method

bool isDouble()

Checks if the string is a valid double.

Implementation

bool isDouble() => double.tryParse(this) != null;