IconButton constructor
IconButton(
- String icon, {
- double? size,
- ColorToken? color,
- ColorToken? fillColor,
- double? borderRadius,
- Object? onTap,
- String? name,
- Object? visible,
Implementation
IconButton(
this.icon, {
this.size,
this.color,
this.fillColor,
this.borderRadius,
Object? onTap,
String? name,
Object? visible,
}) : onTap = normalizeActionSequence(onTap, parameterName: 'onTap'),
super(name: name, visible: _normalizeVisibility(visible));