ConfigurationError constructor

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

An error occurring during configuration of an Amplify plugin, typically the result of missing values needed for that plugin to function properly.

This is a non-recoverable error only thrown during the call to Amplify.configure. If that call succeeds, developers do not need to worry about future configuration errors.

Implementation

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