Skip to content

Commit 46d439b

Browse files
authored
[google_sign_in] Remove references to dart:js_util (#10148)
Flutter has already migrated from dart:js_util to dart:js_interop (which is unsupported by dart2wasm). This migrates a remaining reference to js_util which will be broken when dart2wasm drops the library entirely.
1 parent 05665b5 commit 46d439b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/google_sign_in/google_sign_in/example/lib/src/web_wrapper.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
export 'web_wrapper_stub.dart' if (dart.library.js_util) 'web_wrapper_web.dart';
5+
export 'web_wrapper_stub.dart'
6+
if (dart.library.js_interop) 'web_wrapper_web.dart';

0 commit comments

Comments
 (0)