bool isUnmaskableSymbol(String? symbol) { if (symbol == null || symbol.length > 1) { return false; } return _isMaskSymbolRegExp.hasMatch(symbol); }