LineIcon.italic constructor
const
LineIcon.italic({
- Key? key,
- double? size,
- Color? color,
- String? semanticLabel,
- TextDirection? textDirection,
Constructor for italic icon Name italic turns into flutterish italic
Implementation
const LineIcon.italic({
Key? key,
double? size,
Color? color,
String? semanticLabel,
TextDirection? textDirection,
}) : super(
LineIcons.italic,
key: key,
size: size,
color: color,
semanticLabel: semanticLabel,
textDirection: textDirection,
);