setPlotlineEventsListener static method
Implementation
static Future<void> setPlotlineEventsListener(Function(String eventName, Map<String, dynamic> properties) callbackFunc) async {
try {
plotlineChannel.invokeMethod('setPlotlineEventsListener');
_callback = callbackFunc;
} catch (e) {
debugPrint("Error in setPlotlineEventsListener: $e");
}
}