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