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