StringEditorWidget constructor

const StringEditorWidget({
  1. Key? key,
  2. required ParamValue<String> value,
  3. int? minLines,
  4. int? maxLines = 1,
})

Implementation

const StringEditorWidget({
  super.key,
  required this.value,
  this.minLines,
  this.maxLines = 1,
});