selectRegistrationMethod method

dynamic selectRegistrationMethod(
  1. BuildContext context,
  2. LoginType loginType
)

Implementation

selectRegistrationMethod(BuildContext context, LoginType loginType) {
  Navigator.of(context).pushNamed(RegisterScreen.id, arguments: loginType);
}