hasRespondedToSurvey static method

Future<bool> hasRespondedToSurvey(
  1. String surveyToken
)

Sets a block of code to be executed just before the SDK's UI is presented. This block is executed on the UI thread. Could be used for performing any UI changes after the survey's UI is dismissed. callback A callback that gets executed after the survey's UI is dismissed.

Implementation

static Future<bool> hasRespondedToSurvey(String surveyToken) async {
  final hasResponded = await _host.hasRespondedToSurvey(surveyToken);

  return hasResponded;
}