setUserProperties method

CountlyConfig setUserProperties(
  1. Map<String, dynamic> userProperties
)

Used to provide user properties that would be sent as soon as possible

Implementation

CountlyConfig setUserProperties(Map<String, dynamic> userProperties) {
  _providedUserProperties = userProperties;
  return this;
}