toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bullet = this.bullet;
  final elements = this.elements;
  final paragraphStyle = this.paragraphStyle;
  final positionedObjectIds = this.positionedObjectIds;
  final suggestedBulletChanges = this.suggestedBulletChanges;
  final suggestedParagraphStyleChanges = this.suggestedParagraphStyleChanges;
  final suggestedPositionedObjectIds = this.suggestedPositionedObjectIds;
  return {
    'bullet': ?bullet,
    'elements': ?elements,
    'paragraphStyle': ?paragraphStyle,
    'positionedObjectIds': ?positionedObjectIds,
    'suggestedBulletChanges': ?suggestedBulletChanges,
    'suggestedParagraphStyleChanges': ?suggestedParagraphStyleChanges,
    'suggestedPositionedObjectIds': ?suggestedPositionedObjectIds,
  };
}