isNullOrAlphaNumeric property

bool get isNullOrAlphaNumeric

isNullOrAlphaNumeric: checks if the string is null or alpha numeric

Implementation

bool get isNullOrAlphaNumeric {
  return this == null || isAlphaNumeric;
}