menu
ioc_components package
documentation
cores/functions/checkNumeric.dart
isNumeric function
isNumeric function
dark_mode
light_mode
isNumeric
function
bool
isNumeric
(
String
?
s
)
Implementation
bool isNumeric(String? s) { if (s == null) { return false; } return double.tryParse(s) != null; }
ioc_components package
documentation
cores/functions/checkNumeric
isNumeric function
checkNumeric library