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