in authentication/AuthenticationExample/Models/AuthProvider.swift [67:95]
init?(rawValue: String) {
switch rawValue {
case "Google":
self = .google
case "Apple":
self = .apple
case "Twitter":
self = .twitter
case "Microsoft":
self = .microsoft
case "GitHub":
self = .gitHub
case "Yahoo":
self = .yahoo
case "Facebook":
self = .facebook
case "Email & Password Login":
self = .emailPassword
case "Email Link/Passwordless":
self = .passwordless
case "Phone Number":
self = .phoneNumber
case "Anonymous Authentication":
self = .anonymous
case "Custom Auth System":
self = .custom
default: return nil
}
}