GlassmorphicActionButton constructor

const GlassmorphicActionButton({
  1. Key? key,
  2. required Future<void> onPressed(),
  3. List<Color>? gradient,
})

Implementation

const GlassmorphicActionButton({
  super.key,
  required this.onPressed,
  this.gradient,
});