CardTitle constructor

const CardTitle({
  1. String? display,
  2. String? name,
  3. double? fontSize = 16.0,
  4. Color? color = Colors.black,
  5. String? fontFamily,
  6. FontWeight? fontWeight = FontWeight.w700,
  7. double? height,
  8. FontStyle? fontStyle,
  9. double? letterSpacing,
  10. Color? background,
  11. double? titleMinHeight = 0,
  12. double? paddingHorizontal = 0,
  13. double? paddingVertical = 0,
  14. double? titleTopSpace = 0,
  15. double? titleBottomBorderRadius = 0,
  16. double? outsideTitleMaxWidth = 80.0,
})

Implementation

const CardTitle(
    {this.display,
    this.name,
    this.fontSize = 16.0,
    this.color = Colors.black,
    this.fontFamily,
    this.fontWeight = FontWeight.w700,
    this.height,
    this.fontStyle,
    this.letterSpacing,
    this.background,
    this.titleMinHeight = 0,
    this.paddingHorizontal = 0,
    this.paddingVertical = 0,
    this.titleTopSpace = 0,
    this.titleBottomBorderRadius = 0,
    this.outsideTitleMaxWidth = 80.0});