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