toTextFieldPendantBuilder method

TextFieldPendant toTextFieldPendantBuilder({
  1. DecoratorPendantPosition positioned = DecoratorPendantPosition.outer,
  2. bool maintainSize = false,
  3. bool? needFocus,
  4. bool? needEditing,
  5. DecoratorPendantValueCallback<TextEditingController?>? needValue,
})

Implementation

TextFieldPendant toTextFieldPendantBuilder({
  DecoratorPendantPosition positioned = DecoratorPendantPosition.outer,
  bool maintainSize = false,
  bool? needFocus,
  bool? needEditing,
  DecoratorPendantValueCallback<TextEditingController?>? needValue,
}) => TextFieldPendant.builder(
  builder: (DecoratorBoxStatus<TextEditingController> status) => this,
  maintainSize: maintainSize,
  positioned: positioned,
  needValue: needValue,
  needEditing: needEditing,
  needFocus: needFocus,
);