isNotNullOrAlphaNumeric property

bool get isNotNullOrAlphaNumeric

isNotNullOrAlphaNumeric: checks if the string is not null or alpha numeric

Implementation

bool get isNotNullOrAlphaNumeric {
  return !isNullOrAlphaNumeric;
}