When defining a String using text blocks by default the trailing white space gets removed as it's treated as incidental white space.
var text = """
blah blah
blah
""";
How can I preserve trailing spaces in a text block so that each line in the block end on the same length?