removeSpecialChars method

String removeSpecialChars()

Sadece harf ve rakam bırakır

Implementation

String removeSpecialChars() {
  if (this == null) return '';
  return this!.replaceAll(RegExp(r'[^A-Za-z0-9]'), '');
}