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