search property

String search

Returns the hyperlink's URL's query (includes leading "?" if non-empty).

Can be set, to change the URL's query (ignores leading "?").

MDN Reference

Implementation

_i2.String get search => _i4.getProperty(
      this,
      'search',
    );
void search=(String value)

Implementation

set search(_i2.String value) {
  _i4.setProperty(
    this,
    'search',
    value,
  );
}