openSurvey method

Future<void> openSurvey({
  1. required String surveyId,
})

Implementation

Future<void> openSurvey({required String surveyId}){
  return _channel.invokeMethod("specific", <String, String>{
    "surveyId" : surveyId
  });
}