isNumeric property

bool get isNumeric

Implementation

bool get isNumeric {
  final RegExp regExp = RegExp(r'[^0-9]');
  return regExp.hasMatch(toNotNull);
}