LineIcon constructor
      const
      LineIcon(})
     
    
General constructor Not intended to be used widely, but who knows. It may come at hand sometime
Implementation
const LineIcon(
  IconData icon, {
  Key? key,
  double? size,
  Color? color,
  String? semanticLabel,
  TextDirection? textDirection,
}) : super(
        icon,
        key: key,
        size: size,
        color: color,
        semanticLabel: semanticLabel,
        textDirection: textDirection,
      );