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