createUserWithEmailAndPassword method

Future<UserCredential?> createUserWithEmailAndPassword(
  1. String email,
  2. String password
)

Implementation

Future<UserCredential?> createUserWithEmailAndPassword(
  String email,
  String password,
) async {
  return _auth.createUserWithEmailAndPassword(
    email: email,
    password: password,
  );
}