onlyLettersOrNumbers property
Implementation
String get onlyLettersOrNumbers {
if (isBlank) {
return blankIfNull;
}
return only(alphaNumericChars);
}
String get onlyLettersOrNumbers {
if (isBlank) {
return blankIfNull;
}
return only(alphaNumericChars);
}