isNotNullOrAlphabetic property

bool get isNotNullOrAlphabetic

isNotNullOrAlphabetic: checks if the string is not null or alphabetic

Implementation

bool get isNotNullOrAlphabetic {
  return !isNullOrAlphabetic;
}