title property

String? get title

Match page titles against a pattern. This property is ignored if the extension does not have the "tabs" permission.

Implementation

String? get title => _wrapped.title;
set title (String? v)

Implementation

set title(String? v) {
  _wrapped.title = v;
}