RegisterCredentials.phone constructor

const RegisterCredentials.phone({
  1. required String? phoneNumber,
  2. required String password,
  3. String? displayName,
})

Implementation

const RegisterCredentials.phone({
  required this.phoneNumber,
  required this.password,
  this.displayName,
}) : email = null,
     method = AuthMethod.phone;