So, I want this kind feature in Jetbrains code editors activated in Visual Studio Code
Enabled something like this in settings.json
but, nothing changed at all
How to enable inlay hints VS Code?
My answer is probably late, but below is code that may help enable inlay hints support for Dart & Flutter in VS Code:
"[dart]": { "editor.inlayHints.enabled": "on" }
PS: The above code should be pasted into your settings.json.
This vscode extension by MrChetan gave me closer to my quest for this feature.
Copyright © 2021 Jogjafile Inc.
My answer is probably late, but below is code that may help enable inlay hints support for Dart & Flutter in VS Code:
PS: The above code should be pasted into your settings.json.