Path segments with the top-level module name stripped.
For ["Top", "counter", "clk"] returns ["counter", "clk"].
["Top", "counter", "clk"]
["counter", "clk"]
List<String> get displaySegments => path.length > 1 ? path.sublist(1) : path;