isDouble method
check this string value convertible in double or not
Implementation
bool isDouble() => isEmptyOrNull ? false : double.tryParse(this!) != null;
check this string value convertible in double or not
bool isDouble() => isEmptyOrNull ? false : double.tryParse(this!) != null;