jsonEscape function

String jsonEscape(
  1. String value
)

Implementation

String jsonEscape(String value) {
  return jsonEncode(value);
}