SecondaryButton constructor

const SecondaryButton({
  1. Key? key,
  2. required String title,
  3. VoidCallback? onTap,
})

Implementation

const SecondaryButton({
  super.key,
  required this.title,
  this.onTap,
});