toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final backgroundColorSuggested = this.backgroundColorSuggested;
  final borderBottomSuggested = this.borderBottomSuggested;
  final borderLeftSuggested = this.borderLeftSuggested;
  final borderRightSuggested = this.borderRightSuggested;
  final borderTopSuggested = this.borderTopSuggested;
  final columnSpanSuggested = this.columnSpanSuggested;
  final contentAlignmentSuggested = this.contentAlignmentSuggested;
  final paddingBottomSuggested = this.paddingBottomSuggested;
  final paddingLeftSuggested = this.paddingLeftSuggested;
  final paddingRightSuggested = this.paddingRightSuggested;
  final paddingTopSuggested = this.paddingTopSuggested;
  final rowSpanSuggested = this.rowSpanSuggested;
  return {
    'backgroundColorSuggested': ?backgroundColorSuggested,
    'borderBottomSuggested': ?borderBottomSuggested,
    'borderLeftSuggested': ?borderLeftSuggested,
    'borderRightSuggested': ?borderRightSuggested,
    'borderTopSuggested': ?borderTopSuggested,
    'columnSpanSuggested': ?columnSpanSuggested,
    'contentAlignmentSuggested': ?contentAlignmentSuggested,
    'paddingBottomSuggested': ?paddingBottomSuggested,
    'paddingLeftSuggested': ?paddingLeftSuggested,
    'paddingRightSuggested': ?paddingRightSuggested,
    'paddingTopSuggested': ?paddingTopSuggested,
    'rowSpanSuggested': ?rowSpanSuggested,
  };
}