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