PrimarySmallButton constructor

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

Implementation

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