tabs property

List<Tab>? get tabs

Array of tabs.Tab objects representing the current tabs in the window.

Implementation

List<Tab>? get tabs => _wrapped.tabs?.toDart
    .cast<$js_tabs.Tab>()
    .map((e) => Tab.fromJS(e))
    .toList();
set tabs (List<Tab>? v)

Implementation

set tabs(List<Tab>? v) {
  _wrapped.tabs = v?.toJSArray((e) => e.toJS);
}