LineIcon.fillDrip constructor

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

Constructor for fill_drip icon Name fill_drip turns into flutterish fillDrip

Implementation

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