From 0ee27d4285b13ff7cb050a0a9c7f1a1e6b7dbc8c Mon Sep 17 00:00:00 2001 From: Greg Littlefield Date: Tue, 26 Sep 2023 08:56:15 -0700 Subject: [PATCH] Fix deprecation message for non-public member --- lib/src/react_client/dart_interop_statics.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/react_client/dart_interop_statics.dart b/lib/src/react_client/dart_interop_statics.dart index a71122b8..ebd4b51d 100644 --- a/lib/src/react_client/dart_interop_statics.dart +++ b/lib/src/react_client/dart_interop_statics.dart @@ -16,7 +16,7 @@ import 'package:react/src/react_client/private_utils.dart'; import 'package:react/src/typedefs.dart'; /// The static methods that proxy JS component lifecycle methods to Dart components. -@Deprecated('For internal use only. Will be made private in 7.0.0.') +@Deprecated('Only used with the deprecated Component base class and not Component2.') final ReactDartInteropStatics dartInteropStatics = (() { final zone = Zone.current;