updateEditingValue static method

void updateEditingValue(
  1. TextEditingValue value
)

Updates the editing value of the attached input client.

This method should be called by the text input control implementation to send editing value updates to the attached input client.

Implementation

static void updateEditingValue(TextEditingValue value) {
  _instance._updateEditingValue(value, exclude: _instance._currentControl);
}