StyledButton constructor
StyledButton({})
Implementation
StyledButton(
{Key? key,
this.onPressed,
required this.style,
this.hoveredStyle,
this.pressedStyle,
this.disabledStyle,
this.curve = Curves.linear,
this.duration = const Duration(milliseconds: 100),
Widget? child}) {
builder = (context, state) {
return child;
};
}