Since some Flutter and Dart Classnames can become quite Long I would like to request, that Classes which are not implemented won't be highlighted as Classes any longer.
This would make it easier to spot typos ( I type mostly faster than autocomplete reacts)
and to avoid wrong conclusions like following example:
class Baa{ }; class Foo<T extends Baa> { } ... var myfoo = new Foo<Baar>()
Why does Foo<T> doesnt accept my Baa class as a Type did i do something wrong in the template?
While the while problem lies in me writing Baar instead ..
So it would be nice to only highlight Words starting with a Capital Letter as Classes if they can be identified. Would that be possible? :)