PlatformIconButton constructor

PlatformIconButton({
  1. Key? key,
  2. Key? widgetKey,
  3. Widget? icon,
  4. Widget? cupertinoIcon,
  5. Widget? materialIcon,
  6. void onPressed()?,
  7. Color? color,
  8. Color? disabledColor,
  9. EdgeInsets? padding,
  10. PlatformBuilder<MaterialIconButtonData>? material,
  11. PlatformBuilder<CupertinoIconButtonData>? cupertino,
})

Implementation

PlatformIconButton({
  super.key,
  this.widgetKey,
  this.icon,
  this.cupertinoIcon,
  this.materialIcon,
  this.onPressed,
  this.color,
  this.disabledColor,
  this.padding,
  this.material,
  this.cupertino,
});