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