UnknownAnimationStatus constructor

UnknownAnimationStatus({
  1. required Object error,
  2. StackTrace? stackTrace,
})

Creates an instance of UnknownAnimationStatus.

error is the underlying error that caused the exception (if any). stackTrace is the stack trace of the error (if available).

Implementation

UnknownAnimationStatus({
  required this.error,
  this.stackTrace,
});