RoundShadowedButton constructor

const RoundShadowedButton({
  1. Key? key,
  2. required String label,
  3. required VoidCallback onPressed,
  4. Color color = Colors.blue,
  5. Color textColor = Colors.white,
})

Implementation

const RoundShadowedButton({super.key,
  required this.label,
  required this.onPressed,
  this.color = Colors.blue,
  this.textColor = Colors.white,
});