ManualWidgetTesterTextField constructor

const ManualWidgetTesterTextField({
  1. Key? key,
  2. String? initialValue,
  3. bool disableRoundedCornersOnLeftSide = false,
  4. bool disableRoundedCornersOnRightSide = false,
  5. required void onSubmitted(
    1. String
    ),
  6. String suffix = '',
  7. bool autofocus = false,
  8. void onChanged(
    1. String
    )?,
  9. TextEditingController? textEditingController,
})

Implementation

const ManualWidgetTesterTextField({
  super.key,
  this.initialValue,
  this.disableRoundedCornersOnLeftSide = false,
  this.disableRoundedCornersOnRightSide = false,
  required this.onSubmitted,
  this.suffix = '',
  this.autofocus = false,
  this.onChanged,
  this.textEditingController,
});