ItalicTextStyle constructor
const
ItalicTextStyle({
- Color? color,
- double? fontSize = 14,
- FontWeight? fontWeight = FontWeight.normal,
- TextDecoration? decoration = TextDecoration.none,
Implementation
const ItalicTextStyle({
super.color,
super.fontSize = 14,
super.fontWeight = FontWeight.normal,
super.decoration = TextDecoration.none,
}) : super(
fontStyle: FontStyle.italic,
);