LineIcon.alternateWineGlass constructor

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

Constructor for alternate_wine_glass icon Name alternate_wine_glas turns into flutterish alternateWineGlass

Implementation

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