CircularIconButton constructor

CircularIconButton(
  1. {required IconData icon,
  2. required VoidCallback onPressed,
  3. Color? iconColor,
  4. Color? backgroundColor,
  5. double? height,
  6. double? iconSize}
)

Implementation

CircularIconButton(
    {required this.icon,
    required this.onPressed,
    this.iconColor,
    this.backgroundColor,
    this.height,
    this.iconSize});