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