fix: SdkError Exception can be anything so should be dynamic

This commit is contained in:
Christian Pauly 2021-05-17 14:17:46 +02:00
parent aa4b0a25fa
commit bb9a8ff7e9
1 changed files with 1 additions and 1 deletions

View File

@ -2060,7 +2060,7 @@ sort order of ${prevState.sortOrder}. This should never happen...''');
}
class SdkError {
Exception exception;
dynamic exception;
StackTrace stackTrace;
SdkError({this.exception, this.stackTrace});