RegisterScreen constructor

RegisterScreen({
  1. Key? key,
  2. required Config config,
  3. required LoginType loginType,
  4. required dynamic onAuthenticated(
    1. BuildContext context
    ),
})

Implementation

RegisterScreen({
  Key? key,
  required this.config,
  required this.loginType,
  required this.onAuthenticated,
});