ButtonClickWidget constructor

const ButtonClickWidget(
  1. String imageNormal,
  2. String imageClick,
  3. String imageUn,
  4. double width,
  5. double height, {
  6. Key? key,
  7. Widget? child,
  8. Widget? child2,
  9. Function? click,
  10. double? top,
  11. double? top2,
})

Implementation

const ButtonClickWidget(
    this.imageNormal, this.imageClick, this.imageUn, this.width, this.height,
    {Key? key, this.child, this.child2, this.click, this.top, this.top2})
    : super(key: key);