Creating a more general issue than https://github.com/dart-lang/webdev/issues/2065 `package:dwds` currently doesn't handle Dart runtime types. See for example the difference in runtime type for a `List<int>` for web vs for macos: ``` final myList = [1, 2, 3]; > myList.runtimeType ``` ### web: <img width="409" alt="Screenshot 2023-04-10 at 3 29 43 PM" src="https://user-images.githubusercontent.com/21270878/231011322-03b5c950-8560-46e4-89df-1b9f0a6466f3.png"> ### macos 