title property

String? title

The title of the tab. This property is only present if the extension's manifest includes the "tabs" permission.

Implementation

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

Implementation

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