Example
/// Create a [Map<K, V>] from all elements.
///
/// This is a short-hand for [Map.fromEntries].
Map<K, V> toMap() => Map<K, V>.fromEntries(this);
On Github (as illustrated above)

In VSCode

@DanTup it's unclear to me if this is a vscode bug, or?
In generated dartdoc
Just to show that writing [Map<K, V>] in a documentation does work as expected.
