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