TabActionCountUpdate constructor
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,
);