PlatformIconButton constructor

const PlatformIconButton({
  1. required Widget icon,
  2. double? iconSize,
  3. EdgeInsetsGeometry? padding,
  4. required VoidCallback onPressed,
  5. Key? key,
})

Implementation

const PlatformIconButton(
    {required this.icon,
    this.iconSize,
    this.padding,
    required this.onPressed,
    super.key});