Skip to content

Commit dea7f56

Browse files
committed
remove use of dynamic
1 parent 14e2a2a commit dea7f56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dwds/lib/src/services/app_debug_services.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import 'package:dwds/src/services/proxy_service.dart';
1313
abstract class IAppDebugServices {
1414
IDebugService get debugService;
1515
IDwdsVmClient get dwdsVmClient;
16-
dynamic get dwdsStats;
16+
DwdsStats? get dwdsStats;
1717
Uri? get ddsUri;
1818
String? get connectedInstanceId;
1919
set connectedInstanceId(String? id);
@@ -87,7 +87,7 @@ class WebSocketAppDebugServices implements IAppDebugServices {
8787

8888
// WebSocket-only service - Chrome/DDS features not available
8989
@override
90-
dynamic get dwdsStats => null;
90+
DwdsStats? get dwdsStats => null;
9191
@override
9292
Uri? get ddsUri => null;
9393

0 commit comments

Comments
 (0)