From bb9a8ff7e91b62684b5d684ed0388a8af7a5877b Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Mon, 17 May 2021 14:17:46 +0200 Subject: [PATCH] fix: SdkError Exception can be anything so should be dynamic --- lib/src/client.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/client.dart b/lib/src/client.dart index 56d38fbb..93a8af9e 100644 --- a/lib/src/client.dart +++ b/lib/src/client.dart @@ -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});