Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit 93f24a2

Browse files
author
Martin Braun
committed
fix: null-safety error
1 parent 2504830 commit 93f24a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/autocomplete_search.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ class AutoCompleteSearchState extends State<AutoCompleteSearch> {
249249
),
250250
);
251251

252-
Overlay.of(context).insert(overlayEntry!);
252+
Overlay.of(context)!.insert(overlayEntry!);
253253
}
254254

255255
Widget _buildSearchingOverlay() {

0 commit comments

Comments
 (0)