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