noLeadingSpaceFormatter static method

List<TextInputFormatter> noLeadingSpaceFormatter()

noLeadingSpaceFormatter prevents leading spaces.

Implementation

static List<TextInputFormatter> noLeadingSpaceFormatter() {
  return [
    FilteringTextInputFormatter.deny(RegExp(r'^\s')),
  ];
}