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