addUserProperties method

void addUserProperties(
  1. Map<String, dynamic> props
)

Implementation

void addUserProperties(Map<String, dynamic> props) {
  if (!validateEventKeys(props)) return;
  userProperties ??= {};
  userProperties!.addAll(props);
}