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