createUser abstract method

Future<void> createUser(
  1. String email,
  2. String password
)

Creates a new user account with the provided email and password.

This method should be implemented by the subclass based on the specific authentication provider's logic.

Implementation

Future<void> createUser(String email, String password);