toJson method
Implementation
@override
Map<String, dynamic> toJson() {
return {
'fillColor': fillColor?.toHex(),
'borderColor': borderColor?.toHex(),
'borderWidth': borderWidth,
'checkedColor': checkedColor?.toHex(),
'isChecked': false,
'checkedStyle': checkedStyle?.name
};
}