I want to display this text word1 • word2 • word3 and I found that in this flutter doc there is a $middot constant but I cant find it inside the ascii.dart file .
I also tried to define a const int $middot = 0x00B7; and use it in my text like word1 ${$middot} word2 ${$middot} word3, but the middot is simple ignored and I get word1 word2 word3
How can I achieve this?