SDK Installation
Flutter
Tracking Properties
1 min
track user properties as the user launches the app for the first time, cooee’s sdk will create a user profile for them by default, we add multiple properties for a particular user which you can see in system default user properties along with these default properties, additional custom attributes/properties can also be shared we encourage mobile apps to share all properties for better machine learning modelling check out the docid\ tgt0siqbxh6aitrhi1gpl for more details dart void updateuserprofile() { var profile = { "name" "jane doe", "mobile" "9876543210", "email" "janedoe\@example com", "logged in" true, "foo" "bar" }; cooeeplugin updateuserprofile(profile); }