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