It's the most visible inside flutter code, see example below.
The issue only occurs if dart.previewLsp is enabled in the settings.
return Container(
// If I put my cursor on the first line and press ctrl+space I do not get any suggestions
child: Text(“test”),
// I also don't get any suggestions between two items
color: Colors.red,
// But, if there's a comma between my cursor and the next word, the suggestions appear
,
alignment: Alignment.center,
);