AppButton.outlined constructor
      const
      AppButton.outlined({ 
    
    
- required Widget child,
- Color? fillColor,
- Color? hoverColor,
- bool? loading,
- Size? minimumSize,
- EdgeInsets? padding,
- ValueChanged<bool> ? onHover,
- FutureOrCallback? onPressed,
- FutureOrCallback? onPressedDisabled,
- bool showAnimation = true,
- BorderSide? side,
- Key? key,
Implementation
const AppButton.outlined({
  required this.child,
  this.fillColor,
  this.hoverColor,
  this.loading,
  this.minimumSize,
  this.padding,
  this.onHover,
  this.onPressed,
  this.onPressedDisabled,
  this.showAnimation = true,
  this.side,
  super.key,
}) : type = AppButtonType.outlined;