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