TopImageButton constructor

TopImageButton({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Image? icon,
  5. required String title,
  6. Color? titleColor,
  7. GestureTapCallback? onTap,
  8. void onDoubleTap()?,
  9. void onLongPress()?,
})

Implementation

TopImageButton({
  Key? key,
  this.width,
  this.height,
  this.icon,
  required this.title,
  this.titleColor,
  this.onTap,
  this.onDoubleTap,
  this.onLongPress,
}) : super(key: key);