Dart Documentationchrome.omniboxOnInputChangedEvent

OnInputChangedEvent class

User has changed what is typed into the omnibox.

class OnInputChangedEvent {
 final String text;

 /**
  * A callback passed to the onInputChanged event used for sending suggestions
  * back to the browser.
  */
 final dynamic suggest;

 OnInputChangedEvent(this.text, this.suggest);
}

Constructors

new OnInputChangedEvent(String text, suggest) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
OnInputChangedEvent(this.text, this.suggest);

Properties

final suggest #

A callback passed to the onInputChanged event used for sending suggestions back to the browser.

final dynamic suggest

final String text #

final String text