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