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