tabs property
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();
Array of tabs.Tab
objects representing the current tabs in the window.
List<Tab>? get tabs => _wrapped.tabs?.toDart
.cast<$js_tabs.Tab>()
.map((e) => Tab.fromJS(e))
.toList();