RichContentWidget constructor

const RichContentWidget({
  1. Key? key,
  2. required String content,
  3. TextStyle? defaultTextStyle,
  4. Color? linkColor,
  5. double? imageMaxHeight,
  6. double? imageMaxWidth,
  7. EdgeInsets? padding,
})

Implementation

const RichContentWidget({
  super.key,
  required this.content,
  this.defaultTextStyle,
  this.linkColor,
  this.imageMaxHeight,
  this.imageMaxWidth,
  this.padding,
});