PrimaryMediumButton constructor

const PrimaryMediumButton({
  1. Key? key,
  2. required String text,
  3. required VoidCallback onPressed,
})

Implementation

const PrimaryMediumButton({
  super.key,
  required this.text,
  required this.onPressed,
});