setUserProperties method
Implementation
@override
Future<void> setUserProperties(Map<String, String> properties) async {
if (!_initialized) return;
final people = _mixpanel.getPeople();
properties.forEach((key, value) {
people.set(key, value);
});
}