LineIcon.alternateShare constructor

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

Constructor for alternate_share icon Name alternate_share turns into flutterish alternateShare

Implementation

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