Returns a new String without outer-quotes or itself if not quoted.
String unquote() => isQuoted ? substring(1, length - 1) : this;