executeAction static method
Implementation
static void executeAction({String? type, String? link}) {
switch (type) {
case "":
break;
case "deep":
if (InngageInApp.blockDeepLink) {
InngageInApp.deepLinkCallback(link);
} else {
_deep(link!);
}
break;
case "inapp":
_web(link!);
break;
}
}