signInConditionally method
signInConditionally returns a 'ClientConditionalAuthResult' that represents the result of a conditional
sign-in operation.
Args: email (String): The email parameter is a string that represents the user's email address. password (String): The password parameter is a string that represents the user's password.
Returns:
The method signInConditionally is returning a ClientConditionalAuthResult.
Implementation
Future<ClientConditionalAuthResult> signInConditionally(
String email, String password) async {
return _methods.signInConditionally(email, password);
}