LineIcon.arrowCircleDown constructor

const LineIcon.arrowCircleDown({
  1. Key? key,
  2. double? size,
  3. Color? color,
  4. String? semanticLabel,
  5. TextDirection? textDirection,
})

Constructor for arrow_circle_down icon Name arrow_circle_down turns into flutterish arrowCircleDown

Implementation

const LineIcon.arrowCircleDown({
  Key? key,
  double? size,
  Color? color,
  String? semanticLabel,
  TextDirection? textDirection,
}) : super(
        LineIcons.arrowCircleDown,
        key: key,
        size: size,
        color: color,
        semanticLabel: semanticLabel,
        textDirection: textDirection,
      );