XTap constructor

const XTap({
  1. Key? key,
  2. Color? color,
  3. Size? size,
  4. double? height,
  5. double? width,
  6. EdgeInsetsGeometry? padding,
  7. EdgeInsetsGeometry? margin,
  8. void onTap()?,
  9. Widget? child,
})

Implementation

const XTap({
  super.key,
  this.color,
  this.size,
  this.height,
  this.width,
  this.padding,
  this.margin,
  this.onTap,
  this.child,
});