LineIcon.faceWithTongue constructor

const LineIcon.faceWithTongue({
  1. Key? key,
  2. double? size,
  3. Color? color,
  4. String? semanticLabel,
  5. TextDirection? textDirection,
})

Constructor for face_with_tongue icon Name face_with_tongue turns into flutterish faceWithTongue

Implementation

const LineIcon.faceWithTongue({
  Key? key,
  double? size,
  Color? color,
  String? semanticLabel,
  TextDirection? textDirection,
}) : super(
        LineIcons.faceWithTongue,
        key: key,
        size: size,
        color: color,
        semanticLabel: semanticLabel,
        textDirection: textDirection,
      );