LogoButton constructor

const LogoButton({
  1. Key? key,
  2. required VoidCallback? onPressed,
  3. EdgeInsetsDirectional? padding,
  4. double? customBorderRadius,
  5. ButtonShape? buttonShape = ButtonShape.defaultCornerRadius,
  6. bool isDarkMode = false,
  7. bool isBorder = true,
  8. bool isDisable = false,
})

Implementation

const LogoButton({
  super.key,
  required this.onPressed,
  this.padding,
  this.customBorderRadius,
  this.buttonShape = ButtonShape.defaultCornerRadius,
  this.isDarkMode = false,
  this.isBorder = true,
  this.isDisable = false,
});