AmplifyError constructor

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

An non-recoverable error occurring within an Amplify category or plugin.

Implementation

AmplifyError(
  this.message, {
  this.recoverySuggestion,
  this.underlyingException,
});