getCredential static method

AuthCredential getCredential({
  1. String? phone,
  2. String? password,
})

Implementation

static AuthCredential getCredential({
  String? phone,
  String? password,
}) {
  return PhoneWithPwdAuthCredential(phone: phone, pwd: password);
}