logPluginResponse method

  1. @override
void logPluginResponse(
  1. String pluginId,
  2. String response
)
override

Log a response from the plugin with the given pluginId.

Implementation

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