removeSpecialChars method
Sadece harf ve rakam bırakır
Implementation
String removeSpecialChars() {
if (this == null) return '';
return this!.replaceAll(RegExp(r'[^A-Za-z0-9]'), '');
}
Sadece harf ve rakam bırakır
String removeSpecialChars() {
if (this == null) return '';
return this!.replaceAll(RegExp(r'[^A-Za-z0-9]'), '');
}