RegisterButton constructor

const RegisterButton({
  1. Key? key,
  2. void onPressed()?,
})

Creates a RegisterButton.

Implementation

const RegisterButton({
  Key? key,
  this.onPressed,
}) : super(key: key);