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