BrandNameText constructor
const
BrandNameText({
- Key? key,
- required String title,
- Color? color,
- double? fontSize,
- FontWeight? fontWeight,
- String? fontFamily,
- BrandNameSize size = BrandNameSize.medium,
- int maxLines = 1,
- TextAlign textAlign = TextAlign.start,
- TextOverflow? overflow,
- TextStyle? textStyle,
- double? letterSpacing,
- bool uppercase = false,
- VoidCallback? onTap,
- bool? enableSecurity,
Implementation
const BrandNameText({
super.key,
required this.title,
this.color,
this.fontSize,
this.fontWeight,
this.fontFamily,
this.size = BrandNameSize.medium,
this.maxLines = 1,
this.textAlign = TextAlign.start,
this.overflow,
this.textStyle,
this.letterSpacing,
this.uppercase = false,
this.onTap,
this.enableSecurity,
});