licensePlateCarFormatter top-level property

MaskTextInputFormatter licensePlateCarFormatter
final

Implementation

final licensePlateCarFormatter = MaskTextInputFormatter(
    mask: 'AAA#X##',
    filter: {
      "#": RegExp(r'[0-9]'),
      "A": RegExp(r'[A-Za-z]'),
      "X": RegExp(r'[0-9A-Za-z]')
    },
    type: MaskAutoCompletionType.lazy
);