JavaScriptHandlerService constructor

JavaScriptHandlerService({
  1. required Socket socketInfo,
  2. MacWebViewBrowser? inAppBrowser,
  3. required BuildContext context,
})

Implementation

JavaScriptHandlerService({
  required this.socketInfo,
  this.inAppBrowser,
  required this.context,
}) {
  _jsEventMapperService = JsEventMapperService(
    socketInfo: socketInfo,
    inAppBrowser: inAppBrowser,
    context: context,
  );
}