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