BlockQuoteStyle constructor

const BlockQuoteStyle({
  1. double? barWidth,
  2. Color? barColor,
  3. Radius? barRadius,
  4. Color? backgroundColor,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? margin,
  7. TextStyle? textStyle,
})

Creates a blockquote style. Null fields defer to the theme, then to the resolved default.

Implementation

const BlockQuoteStyle({
  this.barWidth,
  this.barColor,
  this.barRadius,
  this.backgroundColor,
  this.padding,
  this.margin,
  this.textStyle,
});