toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final backgroundColor = this.backgroundColor;
final backgroundColorStyle = this.backgroundColorStyle;
final borders = this.borders;
final horizontalAlignment = this.horizontalAlignment;
final hyperlinkDisplayType = this.hyperlinkDisplayType;
final numberFormat = this.numberFormat;
final padding = this.padding;
final textDirection = this.textDirection;
final textFormat = this.textFormat;
final textRotation = this.textRotation;
final verticalAlignment = this.verticalAlignment;
final wrapStrategy = this.wrapStrategy;
return {
'backgroundColor': ?backgroundColor,
'backgroundColorStyle': ?backgroundColorStyle,
'borders': ?borders,
'horizontalAlignment': ?horizontalAlignment,
'hyperlinkDisplayType': ?hyperlinkDisplayType,
'numberFormat': ?numberFormat,
'padding': ?padding,
'textDirection': ?textDirection,
'textFormat': ?textFormat,
'textRotation': ?textRotation,
'verticalAlignment': ?verticalAlignment,
'wrapStrategy': ?wrapStrategy,
};
}