MyOutlinedButton constructor

const MyOutlinedButton({
  1. Key? key,
  2. required String text,
  3. required VoidCallback? onPressed,
  4. double? width,
  5. double? height,
  6. Widget? icon,
  7. Color? color,
  8. Color? backgroundColor,
  9. EdgeInsetsGeometry? padding,
})

Implementation

const MyOutlinedButton({
  super.key,
  required this.text,
  required this.onPressed,
  this.width,
  this.height,
  this.icon,
  this.color,
  this.backgroundColor,
  this.padding,
});