ButtonMioceen constructor

const ButtonMioceen({
  1. Key? key,
  2. required ButtonStyleType styleType,
  3. required ButtonStateType stateType,
  4. required ButtonContentType contentType,
  5. required String text,
  6. String? icon,
  7. VoidCallback? onPressed,
  8. ButtonWidthType widthType = ButtonWidthType.hug,
  9. bool small = false,
})

Implementation

const ButtonMioceen({
  Key? key,
  required this.styleType,
  required this.stateType,
  required this.contentType,
  required this.text,
  this.icon,
  this.onPressed,
  this.widthType = ButtonWidthType.hug,
  this.small = false,
}) : super(key: key);