TBLWebPage constructor

TBLWebPage(
  1. HashMap<String, String> _unrecognizedGlobalExtraProperties,
  2. TBLTrackingManager _tblTrackingManager
)

Creates a new TBLWebPage instance.

unrecognizedGlobalExtraProperties Global properties from Taboola.setGlobalExtraProperties tblTrackingManager Manages user tracking and consent tblEventsManager The events manager instance (currently unused)

Implementation

TBLWebPage(
  HashMap<String, String> _unrecognizedGlobalExtraProperties,
  this._tblTrackingManager,
) {
  if (_unrecognizedGlobalExtraProperties.isNotEmpty) {
    setPageExtraProperties(_unrecognizedGlobalExtraProperties);
  }
}