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