StreamNeumorphicButton constructor

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

Constructor for creating StreamNeumorphicButton

Implementation

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