setProperties method
Implementation
@override
void setProperties(JSON json) {
data = json["data"] ?? "";
color = Color(
int.parse((json["color"] ?? "#000000").substring(1, 7), radix: 16) +
0xFF000000);
fontSize = json["fontSize"] ?? 12;
}