toJson method
Implementation
@override
Map<String, dynamic> toJson() {
return {
'fillColor': fillColor?.toHex(),
'borderColor': borderColor?.toHex(),
'borderWidth': borderWidth,
'fontColor': fontColor?.toHex(),
'fontSize': fontSize,
'typeface': typeface?.getFontName(),
'isBold': isBold,
'isItalic': isItalic,
'title': title
};
}