AwsMdPreview constructor

const AwsMdPreview({
  1. Key? key,
  2. required String content,
  3. EdgeInsetsGeometry padding = const EdgeInsets.all(0.0),
  4. TapLinkCallback? onTapLink,
  5. required dynamic widgetImage,
  6. TextStyle? textStyle,
})

Implementation

const AwsMdPreview({
  Key? key,
  required this.content,
  this.padding = const EdgeInsets.all(0.0),
  this.onTapLink,
  required this.widgetImage,
  this.textStyle,
}) : super(key: key);