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