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