1. override
void performAction(TextInputAction action)

Requests that this client perform the given action.

Source

@override
void performAction(TextInputAction action) {
  _clearComposing();
  Focus.clear(context);
  if (config.onSubmitted != null)
    config.onSubmitted(_currentValue);
}