content property

String get content

The text that is put into the URL bar, and that is sent to the extension when the user chooses this entry.

Implementation

String get content => _wrapped.content;
set content (String v)

Implementation

set content(String v) {
  _wrapped.content = v;
}