flutter-wootric
A Wootric SDK Wrapper for Flutter. https://www.wootric.com
Example
- 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('test@example.com');
FlutterWootric.setEndUserExternalId('123456789');
FlutterWootric.setEndUserPropteries({
'country': 'Germany',
'age': "36",
});
FlutterWootric.showSurvey();
- Call showWootricSurvey
FlutterWootric.forceSurvey(true); //Only for test
FlutterWootric.showSurvey();
Todos
x
Support end user propertiesx
Support individual survey settingsx
Support logging