isDouble function

bool isDouble(
  1. String value
)

Checks if string is double.

Implementation

bool isDouble(String value) {
  return double.tryParse(value) is double;
}