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