Check string only numeric.
bool onlyNumeric(String str) { RegExp reg = RegExp(_Regex().onlyNumeric); return reg.hasMatch(str); }