LineIcon.map constructor

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

Constructor for map icon Name map turns into flutterish map

Implementation

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