signup method

Future<User?> signup(
  1. String email,
  2. String password
)

Implementation

Future<User?> signup(String email, String password) async {
  try {
    final userRecord = await this._firebaseWrapper.signup(email, password);
    return userRecord;
  } catch (error) {
    throw Exception(error);
  }
}