v1.5.0
-
New: Promoter Score Surveys π
Ask your users how likely they are to recommend your app to their friends on a scale from 0-10. You can see your stats in the console in the new NPS tab.// Trigger this at significant point in your application to probably show // the Promoter Score survey. // Use [options] to adjust how often the survey is shown. Wiredash.of(context).showPromoterSurvey( options: PsOptions( // minimum time between two surveys frequency: Duration(days: 90), // delay before the first survey is available initialDelay: Duration(days: 7), // minimum number of app starts before the survey will be shown minimumAppStarts: 3, ), // for testing, add force the promoter score survey to appear force: true, );