CardDescription constructor
const
CardDescription({
- Key? key,
- required String text,
- double? fontSize,
- FontWeight? fontWeight,
- Color? color,
- String? fontFamily,
- ContentAlignment alignment = ContentAlignment.left,
- int? maxLines,
- TextOverflow? overflow,
- double? letterSpacing,
- 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);