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