PrettyNeumorphicButton constructor

const PrettyNeumorphicButton({
  1. Key? key,
  2. required String label,
  3. required VoidCallback onPressed,
  4. TextStyle? labelStyle,
  5. EdgeInsetsGeometry? padding,
  6. Duration? duration,
  7. double? borderRadius,
})

Implementation

const PrettyNeumorphicButton({
  super.key,
  required this.label,
  required this.onPressed,
  this.labelStyle,
  this.padding,
  this.duration,
  this.borderRadius,
});