initialize method
Binds a listener to given ReceivePort and sends its corresponding SendPort to the plugin manager.
Implementation
@override
void initialize() {
_initialized = true;
_inPort.listen(_onEvent);
_outPort.send(_inPort.sendPort);
}
Binds a listener to given ReceivePort and sends its corresponding SendPort to the plugin manager.
@override
void initialize() {
_initialized = true;
_inPort.listen(_onEvent);
_outPort.send(_inPort.sendPort);
}