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