isDouble method
Returns true
if the string can be converted to a double, false
otherwise.
Implementation
bool isDouble() {
return double.tryParse(this) != null;
}
Returns true
if the string can be converted to a double, false
otherwise.
bool isDouble() {
return double.tryParse(this) != null;
}