tabIds property

List<int>? get tabIds

Implementation

List<int>? get tabIds =>
    _wrapped.tabIds?.toDart.cast<int>().map((e) => e).toList();
set tabIds (List<int>? v)

Implementation

set tabIds(List<int>? v) {
  _wrapped.tabIds = v?.toJSArray((e) => e);
}