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