isNumericOnly method

dynamic isNumericOnly(
  1. String s
)

Implementation

isNumericOnly(String s) => hasMatch(s, r'^\d+$');