themed static method
Creates an icon with custom color from theme
Implementation
static Icon themed(
IconData icon, {
Key? key,
double? size,
Color? color,
String? semanticLabel,
TextDirection? textDirection,
}) {
return Icon(
icon,
key: key,
size: size,
color: color,
semanticLabel: semanticLabel,
textDirection: textDirection,
);
}