SecondaryButton constructor

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

Implementation

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