signInWithPhone method

Future signInWithPhone({
  1. required String phone,
  2. String? code,
  3. String? passwd,
})

Implementation

Future<dynamic> signInWithPhone({
  required String phone,
  String? code,
  String? passwd,
}) async {
  if (_phoneAuthProvider == null) {
    _phoneAuthProvider = PhoneAuthProvider(this.core);
  }
  return _phoneAuthProvider!.signIn(
    phone: phone,
    code: code,
    password: passwd,
  );
}