setGlobalExtraProperties static method

dynamic setGlobalExtraProperties(
  1. HashMap<String, String> extraProperties
)

set global extra properties for the Taboola SDK. arguments: extraProperties HashMap<String,dynamic> a map of extra properties to set.

Implementation

static setGlobalExtraProperties(HashMap<String, String> extraProperties) {
  TBLProperties.mergeValidExtraProperties(
      _unrecognizedGlobalExtraProperties, extraProperties);
}