SparkManager.getNotificationManager() gone?

In the sparkplugs kit I downloaded, there is a SparkManager.getNotificationManager() that returns the some instance that is suppose to help popup some notifications. When I deploy to Spark v2.5.5 it complains the method no longer exists.

I am writing a plugin to monitor stock quotes and would like to popup some notification when certain events happen. Is there is another way to leverage the Spark API to do this?

Thanks, Jim.

You can now just use an instance of SparkToaster.

SparkToaster toaster = new SparkToaster();

toaster.setDisplayTime(5000);

toaster.setTitle(“HELLO”);

toaster.showToaster(icon, “This is your message.”);