NeumorphicActionButton constructor

const NeumorphicActionButton({
  1. Key? key,
  2. required Future<void> onPressed(),
  3. Color? color,
  4. Color? shadowColor,
})

Implementation

const NeumorphicActionButton({
  super.key,
  required this.onPressed,
  this.color,
  this.shadowColor,
});