A Wootric SDK Wrapper for Flutter. https://www.wootric.com
- Import flutter-wootric
- Init the library with your credentials
FlutterWootric.configure(
clientId: "<CLIENT_ID",
accountToken: "<ACCOUNT_TOKEN>",
);
- Setup your survey properties // most of the original features already supported
FlutterWootric.setEndUserEmail('[email protected]');
FlutterWootric.setEndUserExternalId('123456789');
FlutterWootric.setEndUserPropteries({
'country': 'Germany',
'age': "36",
});
FlutterWootric.showSurvey();
- Call showWootricSurvey
FlutterWootric.forceSurvey(true); //Only for test
FlutterWootric.showSurvey();
- Support end user properties
- Support individual survey settings
- Support logging
- Support Callbacks
- Support Message Customization
- Support Color Customization