setOnDismissCallback static method

Future<void> setOnDismissCallback(
  1. OnDismissSurveyCallback callback
)

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<void> setOnDismissCallback(
  OnDismissSurveyCallback callback,
) async {
  _onDismissCallback = callback;
  return _host.bindOnDismissSurveyCallback();
}