Paragraph constructor

Paragraph({
  1. Bullet? bullet,
  2. List<ParagraphElement>? elements,
  3. ParagraphStyle? paragraphStyle,
  4. List<String>? positionedObjectIds,
  5. Map<String, SuggestedBullet>? suggestedBulletChanges,
  6. Map<String, SuggestedParagraphStyle>? suggestedParagraphStyleChanges,
  7. Map<String, ObjectReferences>? suggestedPositionedObjectIds,
})

Implementation

Paragraph({
  this.bullet,
  this.elements,
  this.paragraphStyle,
  this.positionedObjectIds,
  this.suggestedBulletChanges,
  this.suggestedParagraphStyleChanges,
  this.suggestedPositionedObjectIds,
});