putCustomContext method

RudderOption putCustomContext(
  1. String key,
  2. Map<String, Object> value
)

Implementation

RudderOption putCustomContext(String key, Map<String, Object> value) {
  customContexts ??= {};
  customContexts?[key] = value;
  return this;
}