I'm looking for a safe and nice way, if any, to create an empty string in Dart that's not writing "" or ''.
For instance, lists have their own constructor List.empty(), but strings don't.
So, I'm asking if there is a better way than writing "" or '' to initialize an empty string.