Example implementation of Flutter TextInputFormatter to create a smart formatting currency field
// TODO: Add the import to the file that contains the file AmountInputFormatterSet
// Example TextField declaration
var textField = TextField(
inputFormatters: AmountInputFormatterSet(),
);