QuickViewStyle constructor

const QuickViewStyle({
  1. TextStyle? titleStyle,
  2. Color? closeIconTint,
  3. Color? leadingBarTint,
  4. double? leadingBarWidth,
  5. TextStyle? subtitleStyle,
  6. double? width,
  7. double? height,
  8. Color? background,
  9. BoxBorder? border,
  10. double? borderRadius,
  11. Gradient? gradient,
})

Implementation

const QuickViewStyle({
  this.titleStyle,
  this.closeIconTint,
  this.leadingBarTint,
  this.leadingBarWidth,
  this.subtitleStyle,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});