Future<Null> setInputText(SerializableFinder finder, String text)

Sets the text value of the Input widget located by finder.

This command invokes the onChanged handler of the Input widget with the provided text.

Source

Future<Null> setInputText(SerializableFinder finder, String text) async {
  await _sendCommand(new SetInputText(finder, text));
  return null;
}