SecondaryActionButton constructor

const SecondaryActionButton({
  1. Key? key,
  2. required IconData iconData,
  3. required String labelText,
  4. required void onPressed(),
})

Implementation

const SecondaryActionButton({
  super.key,
  required this.iconData,
  required this.labelText,
  required this.onPressed,
});