NiceInPlaceEditor constructor

const NiceInPlaceEditor({
  1. Key? key,
  2. required String value,
  3. required ValueChanged<String> onChanged,
  4. TextStyle? style,
  5. bool editOnDoubleTap = false,
  6. bool selectAllOnFocus = true,
})

Implementation

const NiceInPlaceEditor({
  super.key,
  required this.value,
  required this.onChanged,
  this.style,
  this.editOnDoubleTap = false,
  this.selectAllOnFocus = true,
});