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