LineIcon.donate constructor

const LineIcon.donate({
})

Constructor for donate icon Name donate turns into flutterish donate

Implementation

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