WAction constructor

const WAction({
  1. Key? key,
  2. Widget? first,
  3. Widget? second,
  4. Widget? firstIcon,
  5. Widget? secondIcon,
  6. void onTap()?,
  7. void onTapFirst()?,
  8. void onTapSecond()?,
  9. double? width,
  10. double? height,
  11. EdgeInsets? padding,
  12. EdgeInsets? firstIconPadding,
  13. EdgeInsets? firstPadding,
  14. EdgeInsets? secondPadding,
  15. EdgeInsets? secondIconPadding,
})

Implementation

const WAction({
  super.key,
  this.first,
  this.second,
  this.firstIcon,
  this.secondIcon,
  this.onTap,
  this.onTapFirst,
  this.onTapSecond,
  this.width,
  this.height,
  this.padding,
  this.firstIconPadding,
  this.firstPadding,
  this.secondPadding,
  this.secondIconPadding,
});