CurvyArrowButton constructor

const CurvyArrowButton({
  1. Key? key,
  2. required bool isLeft,
  3. required Color backgroundColor,
  4. required Color iconColor,
  5. required IconData iconData,
  6. required VoidCallback onPressed,
  7. double height = 55,
})

Implementation

const CurvyArrowButton({
  super.key,
  required this.isLeft,
  required this.backgroundColor,
  required this.iconColor,
  required this.iconData,
  required this.onPressed,
  this.height = 55,
});