updateConfig method

void updateConfig(
  1. TextInputConfiguration configuration
)

Requests that the text input control update itself according to the new TextInputConfiguration.

Implementation

void updateConfig(TextInputConfiguration configuration) {
  assert(attached);
  TextInput._instance._updateConfig(configuration);
}