to String
Gives a string representation of this TomlElement. Each subclass has its own implementation.
val table = TomlTable(mapOf("isEnabled" to true, "port" to 8080))
println(table) // { isEnabled = true, port = 8080 }Content copied to clipboard
Return
a JSON-like string containing content.