From ff66337773d2581c029a3880a9fd6a6b90749570 Mon Sep 17 00:00:00 2001 From: td Date: Wed, 1 Feb 2023 15:03:36 +0530 Subject: [PATCH] chore: bump flutter and dart images --- .gitlab-ci.yml | 4 ++-- lib/src/utils/web_worker/web_worker.dart | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a0b1b521..a7f3c85d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,8 +10,8 @@ workflow: - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH variables: - FLUTTER_IMAGE_TAG: "3.3.10" - DART_IMAGE_TAG: "2.18.6" + FLUTTER_IMAGE_TAG: "3.7.0" + DART_IMAGE_TAG: "2.19.0" coverage: stage: test diff --git a/lib/src/utils/web_worker/web_worker.dart b/lib/src/utils/web_worker/web_worker.dart index ee8be511..d9e57910 100644 --- a/lib/src/utils/web_worker/web_worker.dart +++ b/lib/src/utils/web_worker/web_worker.dart @@ -57,7 +57,7 @@ Future startWebWorker() async { sendResponse(operation.label as double, result?.toJson()); break; default: - throw NullThrownError(); + throw TypeError(); } } on Event catch (e, s) { allowInterop(_replyError)