BlockQuoteBuilder typedef

BlockQuoteBuilder = Widget Function(BuildContext context, Widget content, BlockQuoteStyle style)

Builds the widget for a blockquote.

content is the already-rendered quoted content, and style is the resolved BlockQuoteStyle — reuse its colours rather than hard-coding your own, so the quote still follows the theme.

Implementation

typedef BlockQuoteBuilder =
    Widget Function(
      BuildContext context,
      Widget content,
      BlockQuoteStyle style,
    );