TapContainer constructor

const TapContainer({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. EdgeInsetsGeometry? margin,
  5. EdgeInsetsGeometry? padding,
  6. Decoration? decoration,
  7. BoxDecoration? boxDecoration,
  8. Widget? child,
  9. GestureTapCallback? onTap,
})

Implementation

const TapContainer({
  super.key,
  this.width,
  this.height,
  this.margin,
  this.padding,
  this.decoration,
  this.boxDecoration,
  this.child,
  this.onTap,
});