toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bulletAlignment = this.bulletAlignment;
  final glyphFormat = this.glyphFormat;
  final glyphSymbol = this.glyphSymbol;
  final glyphType = this.glyphType;
  final indentFirstLine = this.indentFirstLine;
  final indentStart = this.indentStart;
  final startNumber = this.startNumber;
  final textStyle = this.textStyle;
  return {
    'bulletAlignment': ?bulletAlignment,
    'glyphFormat': ?glyphFormat,
    'glyphSymbol': ?glyphSymbol,
    'glyphType': ?glyphType,
    'indentFirstLine': ?indentFirstLine,
    'indentStart': ?indentStart,
    'startNumber': ?startNumber,
    'textStyle': ?textStyle,
  };
}