AppMainButton constructor

const AppMainButton({
  1. Key? key,
  2. required VoidCallback onTap,
  3. bool active = true,
  4. String? title,
  5. Widget? child,
  6. double? height,
  7. double? width,
  8. double? borerRadius,
  9. Color? backgroundColor,
  10. EdgeInsets? padding,
  11. TextStyle? style,
})

Implementation

const AppMainButton({
  Key? key,
  required this.onTap,
  this.active = true,
  this.title,
  this.child,
  this.height,
  this.width,
  this.borerRadius,
  this.backgroundColor,
  this.padding,
  this.style,
}) : super(key: key);