toJson method

Map<String, dynamic> toJson()

Implementation

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