beautify property

String beautify

Implementation

String get beautify {
  return toString()
      .replaceAll(",", "\n")
      .replaceAll("{", "")
      .replaceAll("}", "");
}