StreamNeumorphicButton constructor

const StreamNeumorphicButton({
  1. Key? key,
  2. required Widget child,
  3. Color backgroundColor = Colors.white,
})

Neumorphic button

Implementation

const StreamNeumorphicButton({
  super.key,
  required this.child,
  this.backgroundColor = Colors.white,
});