SignupButton constructor

const SignupButton({
  1. Key? key,
  2. required OnClick onClick,
})

Implementation

const SignupButton({
  Key? key,
  required this.onClick,
}) : super(key: key);