CustomButtonNormal constructor

const CustomButtonNormal({
  1. Key? key,
  2. Widget? child,
  3. void tap()?,
  4. double? height,
  5. double? width,
  6. Color? color,
  7. double? radius,
  8. EdgeInsetsGeometry? padding,
})

Implementation

const CustomButtonNormal({
  Key? key,
  this.child,
  this.tap,
  this.height,
  this.width,
  this.color,
  this.radius,
  this.padding,
}) : super(key: key);