toJSON method
Serializes the settings to a JSON string.
Implementation
String toJSON() {
StringBuffer buffer = StringBuffer();
buffer.write('{');
toOptionsJSON(buffer);
buffer.write('}');
return buffer.toString();
}
Serializes the settings to a JSON string.
String toJSON() {
StringBuffer buffer = StringBuffer();
buffer.write('{');
toOptionsJSON(buffer);
buffer.write('}');
return buffer.toString();
}