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