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