toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final alignment = this.alignment;
final avoidWidowAndOrphan = this.avoidWidowAndOrphan;
final borderBetween = this.borderBetween;
final borderBottom = this.borderBottom;
final borderLeft = this.borderLeft;
final borderRight = this.borderRight;
final borderTop = this.borderTop;
final direction = this.direction;
final headingId = this.headingId;
final indentEnd = this.indentEnd;
final indentFirstLine = this.indentFirstLine;
final indentStart = this.indentStart;
final keepLinesTogether = this.keepLinesTogether;
final keepWithNext = this.keepWithNext;
final lineSpacing = this.lineSpacing;
final namedStyleType = this.namedStyleType;
final pageBreakBefore = this.pageBreakBefore;
final shading = this.shading;
final spaceAbove = this.spaceAbove;
final spaceBelow = this.spaceBelow;
final spacingMode = this.spacingMode;
final tabStops = this.tabStops;
return {
'alignment': ?alignment,
'avoidWidowAndOrphan': ?avoidWidowAndOrphan,
'borderBetween': ?borderBetween,
'borderBottom': ?borderBottom,
'borderLeft': ?borderLeft,
'borderRight': ?borderRight,
'borderTop': ?borderTop,
'direction': ?direction,
'headingId': ?headingId,
'indentEnd': ?indentEnd,
'indentFirstLine': ?indentFirstLine,
'indentStart': ?indentStart,
'keepLinesTogether': ?keepLinesTogether,
'keepWithNext': ?keepWithNext,
'lineSpacing': ?lineSpacing,
'namedStyleType': ?namedStyleType,
'pageBreakBefore': ?pageBreakBefore,
'shading': ?shading,
'spaceAbove': ?spaceAbove,
'spaceBelow': ?spaceBelow,
'spacingMode': ?spacingMode,
'tabStops': ?tabStops,
};
}