Thank you very much, jnpdx:)
Ok, after much studying of optionals, it seems that one solution is:
for String variables "x" and "y", dictionary myDictionary=["a":"aaa", "b":"bbb", "c":"ccc"], the assignment of a swiftUI dictionary value, which is ALWAYS an optional, to a string variable using the default as part of the assignment statement will suppress the "Optional" display. It looks like:
y = "(myDictionary[x] ?? "anyDefaultDummyTextHere")"
I should have gotten that from @jnpdx's second answer but the Text() object confused me as I was focused on the "y =" assignment statement.
Seems that since y is always preventing from being assigned "nil" by the default thingy "??", then y no longer displays as "Optional".