IconWidget constructor
IconWidget(
- IconData icon, {
- Key? key,
- double? size,
- Color? color,
- String? semanticLabel,
- TextDirection? textDirection,
- bool isVisible = true,
- EdgeInsetsGeometry padding = EdgeInsets.zero,
- double? widthFactor,
- double? heightFactor,
- BorderRadius borderRadius = BorderRadius.zero,
Implementation
IconWidget(
IconData icon, {
Key? key,
double? size,
Color? color,
String? semanticLabel,
TextDirection? textDirection,
this.isVisible = true,
this.padding = EdgeInsets.zero,
this.widthFactor,
this.heightFactor,
this.borderRadius = BorderRadius.zero,
}) : super(icon, key: key, size: size, color: color, semanticLabel: semanticLabel, textDirection: textDirection);