From 68f84e3a7c8f3b50b8f63882360a66c66b7a7212 Mon Sep 17 00:00:00 2001 From: Akshay Date: Mon, 5 Dec 2022 15:23:58 +0530 Subject: [PATCH] Fixed not building for web bcoz of wrong export file name. --- lib/open_file_safe.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/open_file_safe.dart b/lib/open_file_safe.dart index 500943b0..b88e3e11 100644 --- a/lib/open_file_safe.dart +++ b/lib/open_file_safe.dart @@ -2,4 +2,4 @@ library open_file_safe; export 'src/common/open_result.dart'; export 'src/plaform/open_file_safe.dart' - if (dart.library.html) 'src/web/open_file_safe.dart'; + if (dart.library.html) 'src/web/open_file.dart';