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