StringValueComposer constructor

const StringValueComposer({
  1. Key? key,
  2. DartBlockStringValue? value,
  3. required dynamic onChange(
    1. DartBlockStringValue?
    ),
  4. dynamic onSubmitted(
    1. String value
    )?,
})

Implementation

const StringValueComposer({
  super.key,
  this.value,
  required this.onChange,
  this.onSubmitted,
});