tabIds property
Object
get
tabIds
The tab ID or list of tab IDs to add to the specified group.
Implementation
Object get tabIds => _wrapped.tabIds.when(
isInt: (v) => v,
isArray: (v) => v.toDart.cast<int>().map((e) => e).toList(),
);
set
tabIds
(Object v)
Implementation
set tabIds(Object v) {
_wrapped.tabIds = switch (v) {
int() => v.jsify()!,
List<int>() => v.toJSArray((e) => e),
_ => throw UnsupportedError(
'Received type: ${v.runtimeType}. Supported types are: int, List<int>')
};
}