Label constructor
const
Label(
- String text, {
- Key? key,
- bool bold = false,
- bool italic = false,
- bool gray = false,
- Color? customColor,
- TextAlign? align,
- int? maxLines,
- TextOverflow? overflow,
- TextDecoration? decoration,
- TextDecorationStyle? decorationStyle,
Implementation
const Label(
super.text, {
super.key,
super.bold,
super.italic,
super.gray,
super.customColor,
super.align,
super.maxLines,
super.overflow,
super.decoration,
super.decorationStyle,
});