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