WidgetImageButton constructor

const WidgetImageButton({
  1. Key? key,
  2. GestureTapCallback? onTap,
  3. required WidgetAssetImage imageNormal,
  4. WidgetAssetImage? imageHover,
  5. bool animate = true,
  6. String? name,
})

Implementation

const WidgetImageButton({
  Key? key,
  this.onTap,
  required this.imageNormal,
  this.imageHover,
  this.animate = true,
  this.name,
}) : super(key: key);