toJson method
Implementation
@override
Map<String, dynamic> toJson() {
return {
"shape": shapeName,
"x": x,
"y": y,
"width": width,
"height": height,
"elements": elements.toJson(),
if (backgroundColor != null)
"backgroundColor": backgroundColor.toString(),
};
}