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