TextFieldWithDecoratorBox constructor

const TextFieldWithDecoratorBox({
  1. Key? key,
  2. DecoratorBoxStyle? decorator,
  3. TextInputLimitFormatter inputLimitFormatter = TextInputLimitFormatter.text,
  4. List<DecoratorEntry> suffixes = const [],
  5. List<DecoratorEntry> prefixes = const [],
  6. required TextFieldWithDecoratorBoxBuilder builder,
})

Implementation

const TextFieldWithDecoratorBox({
  super.key,
  this.decorator,
  this.inputLimitFormatter = TextInputLimitFormatter.text,
  this.suffixes = const [],
  this.prefixes = const [],
  required this.builder,
});