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