urlSafe property

List<TextInputFormatter> get urlSafe

Allows URL-safe characters Useful for website inputs and links

Implementation

static List<TextInputFormatter> get urlSafe => <TextInputFormatter>[
  FilteringTextInputFormatter.deny(_urlUnsafePattern),
];