LineIcon.marker constructor
const
LineIcon.marker({
- Key? key,
- double? size,
- Color? color,
- String? semanticLabel,
- TextDirection? textDirection,
Constructor for marker icon Name marker turns into flutterish marker
Implementation
const LineIcon.marker({
Key? key,
double? size,
Color? color,
String? semanticLabel,
TextDirection? textDirection,
}) : super(
LineIcons.marker,
key: key,
size: size,
color: color,
semanticLabel: semanticLabel,
textDirection: textDirection,
);