MButtonMiniGradient constructor

const MButtonMiniGradient({
  1. Key? key,
  2. required Future<void> onPressed()?,
  3. String? buttonText,
  4. TextStyle? style,
  5. Size? size,
  6. BorderRadius? borderRadius,
  7. Gradient? backgroundGradient,
  8. Color? backgroundColor,
  9. EdgeInsetsGeometry? margin,
})

Implementation

const MButtonMiniGradient({
  super.key,
  required this.onPressed,
  this.buttonText,
  this.style,
  this.size,
  this.borderRadius,
  this.backgroundGradient,
  this.backgroundColor,
  this.margin,
});