isNotNullOrNumeric property

bool get isNotNullOrNumeric

isNotNullOrNumeric: checks if the string is not null or numeric

Implementation

bool get isNotNullOrNumeric {
  return !isNullOrNumeric;
}