LineIcon.poundSign constructor

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

Constructor for pound_sign icon Name pound_sign turns into flutterish poundSign

Implementation

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