showSurvey static method

Future<void> showSurvey(
  1. String surveyToken
)

Shows survey with a specific token. Does nothing if there are no available surveys with that specific token. Answered and cancelled surveys won't show up again. surveyToken - A String with a survey token.

Implementation

static Future<void> showSurvey(String surveyToken) async {
  return _host.showSurvey(surveyToken);
}