tabUpdate property

TabActionCountUpdate? get tabUpdate

Details of how the tab's action count should be adjusted.

Implementation

TabActionCountUpdate? get tabUpdate =>
    _wrapped.tabUpdate?.let(TabActionCountUpdate.fromJS);
set tabUpdate (TabActionCountUpdate? v)

Implementation

set tabUpdate(TabActionCountUpdate? v) {
  _wrapped.tabUpdate = v?.toJS;
}