Initialize user object
Whenever you initialize Insider SDK, you also initialize a new Insider user object. You can set attributes for this object and get this object with getCurrentUser method.
Insider user object represents the current user of your app. It is the main object that you can use for attribution (e.g. age, email, opt-in, etc.).
Method Signature
FlutterInsiderUser getCurrentUser()Method Example
FlutterInsider.Instance.getCurrentUser();Set email as user identifier
This method allows you to set the user identifier attribute of your Insider user object for data unification. With this attribute, you can unify your user data within Insider products and reach this user via different channels such as mobile app and web.
Method Signature
Future<FlutterInsiderIdentifiers> addEmail(String email) asyncMethod Example
FlutterInsiderIdentifiers identifiers = new FlutterInsiderIdentifiers();
identifiers.addEmail("sample@mail.com");
identifiers.addPhoneNumber("+651234567");
identifiers.addUserID("CRM-ID");
await FlutterInsider.Instance.getCurrentUser().login(identifiers);Phone numbers are required to start with a + (plus) sign followed by a country code. The country code should start with a number between 1-9.
Set phone number as user identifier
This method allows you to set the user identifier attribute of your Insider user object for data unification. With this attribute, you can unify your user data within Insider products and reach this user via different channels such as mobile app and web.
Method Signature
Future<FlutterInsiderIdentifiers> addPhoneNumber(String phoneNumber) asyncMethod Example
FlutterInsiderIdentifiers identifiers = new FlutterInsiderIdentifiers();
identifiers.addEmail("sample@mail.com");
identifiers.addPhoneNumber("+651234567");
identifiers.addUserID("CRM-ID");
await FlutterInsider.Instance.getCurrentUser().login(identifiers);Phone numbers are required to start with a + (plus) sign followed by a country code. The country code should start with a number between 1-9.
Set user ID as user identifier
This method allows you to set the user identifier attribute of your Insider user object for data unification. With this attribute, you can unify your user data within Insider products and reach this user via different channels such as mobile app and web.
Method Signature
Future<FlutterInsiderIdentifiers> addUserID(String userID) asyncMethod Example
FlutterInsiderIdentifiers identifiers = new FlutterInsiderIdentifiers();
identifiers.addEmail("sample@mail.com");
identifiers.addPhoneNumber("+651234567");
identifiers.addUserID("CRM-ID");
await FlutterInsider.Instance.getCurrentUser().login(identifiers);Phone numbers are required to start with a + (plus) sign followed by a country code. The country code should start with a number between 1-9.
Set name attribute
This method allows you to set the name attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| name | String |
Method Signature
Future setName(String name) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setName("name");Set surname attribute
This method allows you to set the surname attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| surname | String |
Method Signature
Future setSurname(String surname) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setSurname("surname");Set gender attribute
This method allows you to set the gender attribute for your Insider user object. You need to pass InsiderGender enum object as a parameter.
| Parameter | Enum values |
|---|---|
gender (InsiderGender enum) | InsiderGenderMale |
Method Signature
Future setGender(int gender) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setGender(InsiderGender.OTHER);Set age attribute
This method allows you to set the age attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
age | Integer |
Method Signature
Future setAge(int age) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setAge(23);Set birthday attribute
This method allows you to set the birthday attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| birthday | Date |
Method Signature
Future setBirthday(DateTime birthday) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setBirthday(new DateTime.now());Select language attribute
This method allows you to set the language attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| language | String |
Method Signature
Future setLanguage(String language) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setLanguage("language");Set email opt-in attribute
This method allows you to set the email opt-in (permission) attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| emailOptin | Boolean |
Method Signature
Future setEmailOptin(bool emailOptin) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setEmailOptin(true);Set sms opt-in attribute
This method allows you to set the sms opt-in (permission) attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| smsOptin | Boolean |
Method Signature
Future setSMSOptin(bool smsOptin) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setSMSOptin(true);Set Whatsapp opt-in attribute
This method allows you to set the whatsapp opt-in (permission) attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| whatsAppOptin | Boolean |
Method Signature
Future setWhatsappOptin(bool whatsappOptin) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setWhatsappOptin(true);Set push opt-in attribute
This method allows you to set the push opt-in (permission) attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| pushOptin | Boolean |
Method Signature
Future setPushOptin(bool pushOptin) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setPushOptin(true);Set location opt-in attribute
This method allows you to set the location opt-in (permission) attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| locationOptin | Boolean |
Method Signature
Future setLocationOptin(bool locationOptin) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setLocationOptin(true);Set login attribute
This method allows you to set the login status attribute for your Insider user object.
Method Signature
Future login(FlutterInsiderIdentifiers identifiers) asyncMethod Example
FlutterInsiderIdentifiers identifiers = new FlutterInsiderIdentifiers();
identifiers.addEmail("sample@mail.com");
identifiers.addPhoneNumber("+651234567");
identifiers.addUserID("CRM-ID");
await FlutterInsider.Instance.getCurrentUser().login(identifiers);Set logout attribute
This method allows you to set the login status attribute for your Insider user object.
Method Signature
Future logout() asyncMethod Example
FlutterInsider.Instance.getCurrentUser().logout();Set signup event
To trigger action for signup of users, you need to call this method whenever a user sign up to the app.
Method Signature
Future signUpConfirmation() asyncMethod Example
FlutterInsider.Instance.signUpConfirmation()Set locale attribute
This method allows you to set the locale attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| locale | String |
Method Signature
Future setLocale(String locale) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setLocale("en_EN");Set custom string attribute
This method allows you to set the custom string attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| key | String |
| value | String |
Method Signature
Future setCustomAttributeWithString(String key, String value) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setCustomAttributeWithString("key", "stringValue");Set custom integer attribute
This method allows you to set the custom integer attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| key | String |
| value | Integer |
Method Signature
Future setCustomAttributeWithInt(String key, int value) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setCustomAttributeWithInt("key", 10);Set custom boolean attribute
This method allows you to set the custom boolean attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| key | String |
| value | Boolean |
Method Signature
Future setCustomAttributeWithBoolean(String key, bool value) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setCustomAttributeWithBoolean("key", true);Set custom double attribute
This method allows you to set the custom double attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| key | String |
| value | Double |
Method Signature
Future setCustomAttributeWithDouble(String key, double value) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setCustomAttributeWithDouble("key", 10.5);Set custom date attribute
This method allows you to set the custom date attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| key | String |
| value | Date object |
Method Signature
Future setCustomAttributeWithDate(String key, DateTime value) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().setCustomAttributeWithDate("key", new DateTime.now());Set custom array attribute
This method allows you to set the custom array attribute for your Insider user object.
| Parameter | Data Type |
|---|---|
| key | String |
| value | Array (of string) |
Method Signature
Future setCustomAttributeWithArray(String key, List value) asyncMethod Example
List<String> arr = new List(3);
arr[0] = "item1";
arr[1] = "item2";
arr[2] = "item3";
FlutterInsider.Instance.getCurrentUser().setCustomAttributeWithArray("key", arr);Unset custom attribute
This method allows you to unset any custom attribute of your Insider user object. This method will remove the respective the custom attribute of your user for the given key permanently.
| Parameter | Data Type |
|---|---|
| key | String |
Method Signature
Future unsetCustomAttribute(String key) asyncMethod Example
FlutterInsider.Instance.getCurrentUser().unsetCustomAttribute("key");For troubleshooting, refer to Why cannot we trigger the login method a second time in an active session, Confusion of attributes among users after login