TopImageTextButton constructor

TopImageTextButton({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Color? color,
  5. double? iconHeight,
  6. double? iconLeftRightSpace,
  7. double? iconTitleSpace,
  8. double? titleHeight,
  9. double? clickHandle,
  10. Image? imageView,
  11. Widget? textLabel,
  12. GestureTapCallback? onTap,
  13. void onDoubleTap()?,
  14. void onLongPress()?,
})

Implementation

TopImageTextButton({
  Key? key,
  this.width,
  this.height,
  this.color,
  this.iconHeight,
  this.iconLeftRightSpace,
  this.iconTitleSpace,
  this.titleHeight,
  this.clickHandle,
  this.imageView,
  this.textLabel,
  this.onTap,
  this.onDoubleTap,
  this.onLongPress,
}) : super(key: key);