CardDescription constructor

const CardDescription({
  1. Key? key,
  2. required String text,
  3. double? fontSize,
  4. FontWeight? fontWeight,
  5. Color? color,
  6. String? fontFamily,
  7. ContentAlignment alignment = ContentAlignment.left,
  8. int? maxLines,
  9. TextOverflow? overflow,
  10. double? letterSpacing,
  11. double? height,
})

Implementation

const CardDescription({
  Key? key,
  required this.text,
  this.fontSize,
  this.fontWeight,
  this.color,
  this.fontFamily,
  this.alignment = ContentAlignment.left,
  this.maxLines,
  this.overflow,
  this.letterSpacing,
  this.height,
}) : super(key: key);