toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final firstBandColor = this.firstBandColor;
final firstBandColorStyle = this.firstBandColorStyle;
final footerColor = this.footerColor;
final footerColorStyle = this.footerColorStyle;
final headerColor = this.headerColor;
final headerColorStyle = this.headerColorStyle;
final secondBandColor = this.secondBandColor;
final secondBandColorStyle = this.secondBandColorStyle;
return {
'firstBandColor': ?firstBandColor,
'firstBandColorStyle': ?firstBandColorStyle,
'footerColor': ?footerColor,
'footerColorStyle': ?footerColorStyle,
'headerColor': ?headerColor,
'headerColorStyle': ?headerColorStyle,
'secondBandColor': ?secondBandColor,
'secondBandColorStyle': ?secondBandColorStyle,
};
}