contains method
contains another class
Implementation
@override
bool contains(CharacterClass other) {
return other is LowerLetters ||
other is UpperLetters ||
other is AllLetters ||
other is UrlCharacters;
}
contains another class
@override
bool contains(CharacterClass other) {
return other is LowerLetters ||
other is UpperLetters ||
other is AllLetters ||
other is UrlCharacters;
}