selectRegistrationMethod method
Implementation
selectRegistrationMethod(BuildContext context, LoginType loginType) {
Navigator.of(context)
.push(MaterialPageRoute(
builder: (context) => RegisterScreen(
config: config,
loginType: loginType,
onAuthenticated: onAuthenticated,
)))
.then((value) => Navigator.of(context).pop());
}