LineIcon.wineGlass constructor

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

Constructor for wine_glass icon Name wine_glass turns into flutterish wineGlass

Implementation

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