IframeCommunicationSlave constructor

IframeCommunicationSlave({
  1. required WindowBase parent,
  2. CommunicationInputListenerDelegate? communicationInputListenerDelegate,
})

Implementation

IframeCommunicationSlave(
    {required WindowBase parent, this.communicationInputListenerDelegate}) {
  communication = IframeCommunication(target: parent);
  communication.setMessageReceiver(_receive);
  _onListenPopRoute();
  _onListenFireSearch();
  _onListenLeavePage();
}