onReceiveEventFromPipeline method
Implementation
void onReceiveEventFromPipeline(String eventName, String jsonData) {
final Function? handler = _functionMap[eventName];
if (handler != null) {
final Map<String, dynamic> jsonDict = _getJsonObject(jsonData);
handler(jsonDict);
}
}