UnknownAnimationStatus constructor
UnknownAnimationStatus({
- required Object error,
- 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,
});