MButtonMini1 constructor

const MButtonMini1({
  1. Key? key,
  2. required Future<void> onPressed()?,
  3. String? buttonText,
  4. Color? buttonColor,
  5. TextStyle? style,
  6. Size? size,
  7. BorderRadius? borderRadius,
})

Implementation

const MButtonMini1({
  super.key,
  required this.onPressed,
  this.buttonText,
  this.buttonColor,
  this.style,
  this.size,
  this.borderRadius,
});