menu
helpers package
documentation
helpers/misc.dart
Misc
isNumericOnly static method
isNumericOnly static method
dark_mode
light_mode
isNumericOnly
static method
bool
isNumericOnly
(
String
text
)
Implementation
static bool isNumericOnly(String text) => RegExp(r'^\d+$').hasMatch(text);
helpers package
documentation
helpers/misc
Misc
isNumericOnly static method
Misc class