ExtendedTextField constructor

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

Implementation

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