toHtml method
Implementation
@override
String toHtml() {
String result = "";
Map<String, dynamic> p = value;
bool first = true;
for (String key in p.keys) {
if (!first)
result += ";";
else
first = false;
result += "$key:${p[key]}";
}
return result;
}