CustomIconButton constructor

const CustomIconButton({
  1. Key? key,
  2. Alignment? alignment,
  3. EdgeInsetsGeometry? margin,
  4. double? height,
  5. double? width,
  6. EdgeInsetsGeometry? padding,
  7. BoxDecoration? decoration,
  8. Widget? child,
  9. VoidCallback? onTap,
})

Implementation

const CustomIconButton({
  Key? key,
  this.alignment,
  this.margin,
  this.height,
  this.width,
  this.padding,
  this.decoration,
  this.child,
  this.onTap,
}) : super(
        key: key,
      );