AntdParagraph constructor

const AntdParagraph({
  1. Key? key,
  2. bool? code,
  3. bool? copyable,
  4. bool? delete,
  5. bool? disabled,
  6. bool? editable,
  7. bool? ellipsis,
  8. bool? mark,
  9. bool? strong,
  10. bool? italic,
  11. bool? underline,
  12. AntdTypofraphyType? type,
  13. VoidCallback? onClick,
  14. String? content,
  15. List<AntdText>? contentList,
})

Implementation

const AntdParagraph({
  super.key,
  this.code,
  this.copyable,
  this.delete,
  this.disabled,
  this.editable,
  this.ellipsis,
  this.mark,
  this.strong,
  this.italic,
  this.underline,
  this.type,
  this.onClick,
  this.content,
  this.contentList,
});