BlockquoteWidget constructor
const
BlockquoteWidget({
- Key? key,
- required List<
Span> spans, - required double fontSize,
- required String font,
- required FontWeight weight,
- required Color foreground,
- required FontWeight boldWeight,
- required Color boldForeground,
- required Color linkForeground,
- required Color codeBackground,
- required double codePadding,
- required double codeBorderRadius,
- required Color codeForeground,
- required String codeFont,
- required FontWeight codeWeight,
- required Color blockquoteBackground,
- required Color blockquoteBorderColor,
- required double blockquoteBorderSize,
- required double blockquotePadding,
Implementation
const BlockquoteWidget({
Key? key,
required this.spans,
required this.fontSize,
required this.font,
required this.weight,
required this.foreground,
required this.boldWeight,
required this.boldForeground,
required this.linkForeground,
required this.codeBackground,
required this.codePadding,
required this.codeBorderRadius,
required this.codeForeground,
required this.codeFont,
required this.codeWeight,
required this.blockquoteBackground,
required this.blockquoteBorderColor,
required this.blockquoteBorderSize,
required this.blockquotePadding,
}) : super(key: key);