logPluginNotification method

  1. @override
void logPluginNotification(
  1. String pluginId,
  2. String notification
)
override

Log a notification from the plugin with the given pluginId.

Implementation

@override
void logPluginNotification(String pluginId, String notification) {
  _services.forEach((s) => s.logPluginNotification(pluginId, notification));
}