isNotNumeric property

bool get isNotNumeric

Implementation

bool get isNotNumeric {
  final RegExp regExp = RegExp(r'[a-zA-Z]+$');
  return regExp.hasMatch(toNotNull);
}