cleanText property

List<TextInputFormatter> get cleanText

For general text inputs that need to be clean Denies emojis and profanity, allows alphanumeric

Implementation

static List<TextInputFormatter> get cleanText => <TextInputFormatter>[
  ...denyEmojis,
  ...denyProfanity,
  ...alphanumericOnly,
];