createAccount method
Creates a new user account with the given credentials
Implementation
@override
Future<void> createAccount(
String email,
String password, {
String? displayName,
}) async {
final credential =
await _auth.createUserWithEmailAndPassword(email, password);
credential.user; // ensure non-null
if (!kIsDev) await signOut();
}