Button95 constructor

const Button95({
  1. Key? key,
  2. dynamic onTap()?,
  3. Widget? child,
  4. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(vertical: 4, horizontal: 20),
  5. double height = 30,
})

Implementation

const Button95({
  super.key,
  this.onTap,
  this.child,
  this.padding = const EdgeInsets.symmetric(vertical: 4, horizontal: 20),
  this.height = 30,
});