currentTextEditingValue property

  1. @override
TextEditingValue? get currentTextEditingValue
override

The current state of the TextEditingValue held by this client.

Implementation

@override
TextEditingValue? get currentTextEditingValue => TextEditingValue(
      text: text.toPlainText(),
      selection: selection,
      composing: composingRegion,
    );