Flutter User Profile: Fixing Email Display Issues with Mixpanel Integration
Our mobile app is written in Flutter. The problem we're having is that the user profile property email field is not displaying correctly, and our hubspot integration to mixpanel says that the email address is missing for users so the hubspot sync isn't working for user profiles. When I tested in Javascript the following is working, i.e. the email in user profile is stored correctly: mixpanel.people.set({ '$email': 'john.doe@example.com', 'Company': 'The Does' }); And our developers said they are storing it with $email property name in Flutter also, but it's not working. Can you give an exmaple of flutter code with correct user profile email property?