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