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