tabSubscriptions method
Get map of subscription options for every contract in scope of browser
tab with tabId.
Implementation
@override
Map<Address, ContractUpdatesSubscription>? tabSubscriptions(String tabId) => {
for (final item in allContracts.where((c) => c.tabId == tabId))
item.address: item.updateSubscriptionOptions,
};