toMap method
Implementation
Map<String, dynamic> toMap() {
return {
'cellBackgroundColor': cellBackgroundColor?.value,
'cellCornerRadius': cellCornerRadius,
'cellBorderWidth': cellBorderWidth,
'cellBorderColor': cellBorderColor?.value,
'cellSelectedBackgroundColor': cellSelectedBackgroundColor?.value,
'cellSelectedBorderWidth': cellSelectedBorderWidth,
'cellSelectedBorderColor': cellSelectedBorderColor?.value,
};
}