CardStyle constructor

const CardStyle({
  1. TextStyle? titleStyle,
  2. TextStyle? subtitleStyle,
  3. double? width,
  4. double? height,
  5. Color? background,
  6. BoxBorder? border,
  7. double? borderRadius,
  8. Gradient? gradient,
})

Implementation

const CardStyle({
  this.titleStyle,
  this.subtitleStyle,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});