FCCSectionTitle constructor
const
FCCSectionTitle({
- Key? key,
- required String title,
- IconData? icon,
- EdgeInsetsGeometry padding = const EdgeInsets.symmetric(vertical: 12.0),
- double spacing = 8.0,
- TextStyle? textStyle,
- MainAxisAlignment alignment = MainAxisAlignment.start,
- Color? iconColor,
- double? iconSize = 20.0,
- int? maxLines,
- TextOverflow? overflow,
- bool vertical = false,
- Color? backgroundColor,
- double backgroundRadius = 8.0,
Implementation
const FCCSectionTitle({
super.key,
required this.title,
this.icon,
this.padding = const EdgeInsets.symmetric(vertical: 12.0),
this.spacing = 8.0,
this.textStyle,
this.alignment = MainAxisAlignment.start,
this.iconColor,
this.iconSize = 20.0,
this.maxLines,
this.overflow,
this.vertical = false,
this.backgroundColor,
this.backgroundRadius = 8.0,
});