removeNonEnglishCharacter property

String? get removeNonEnglishCharacter

ingilizce olmayan kaakterleri temizler

Implementation

String? get removeNonEnglishCharacter {
  if (this == null) return null;
  return this!.split('').fold<String>('', (previousValue, element) => englishCharacters.contains(element) ? previousValue + element : previousValue);
}