nameField property
List<TextInputFormatter>
get
nameField
Most common combination for user names Denies emojis and allows letters/spaces only
Implementation
static List<TextInputFormatter> get nameField => <TextInputFormatter>[
...denyEmojis,
...lettersOnly,
];