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