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