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