PluginError constructor

PluginError(
  1. String message, {
  2. String? recoverySuggestion,
  3. Object? underlyingException,
})

A non-recoverable error occurring during plugin operations.

Implementation

PluginError(
  super.message, {
  super.recoverySuggestion,
  super.underlyingException,
});