TabActionCountUpdate constructor

TabActionCountUpdate({
  1. required int tabId,
  2. required int increment,
})

Implementation

TabActionCountUpdate({
  /// The tab for which to update the action count.
  required int tabId,

  /// The amount to increment the tab's action count by. Negative values will
  /// decrement the count.
  required int increment,
}) : _wrapped = $js.TabActionCountUpdate(
        tabId: tabId,
        increment: increment,
      );