jsParse property
dynamic
get
jsParse
Implementation
dynamic get jsParse {
if (this == null) {
return null;
} else if (runtimeType == String) {
return '''"${this.replaceAll("\n", "\\n").replaceAll("\"", "\\\"")}"''';
} else {
// return same for now
return this;
}
}