ktoJson method

String ktoJson()

string转json

  'abc'.ktoJson() => "abc"

Implementation

String ktoJson() {
  return jsonEncode(this);
}