JavaScriptHandlerService constructor
JavaScriptHandlerService({
- required Socket socketInfo,
- MacWebViewBrowser? inAppBrowser,
- required BuildContext context,
Implementation
JavaScriptHandlerService({
required this.socketInfo,
this.inAppBrowser,
required this.context,
}) {
_jsEventMapperService = JsEventMapperService(
socketInfo: socketInfo,
inAppBrowser: inAppBrowser,
context: context,
);
}