isNullOrAlphabetic property

bool get isNullOrAlphabetic

isNullOrAlphabetic: checks if the string is null or alphabetic

Implementation

bool get isNullOrAlphabetic {
  return this == null || isAlphabetic;
}