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