toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bulletStyle = this.bulletStyle;
  final glyph = this.glyph;
  final listId = this.listId;
  final nestingLevel = this.nestingLevel;
  return {
    'bulletStyle': ?bulletStyle,
    'glyph': ?glyph,
    'listId': ?listId,
    'nestingLevel': ?nestingLevel,
  };
}