addUserPhone method

Future<void> addUserPhone(
  1. UserPhone phone, {
  2. ConfirmationCode? confirmation,
  3. String? locale,
})

Adds a new phone number for the authenticated MyUser.

Sets the given phone number as an MyUserPhones.unconfirmed sub-field of a MyUser.phones field and sends to this number SMS with a ConfirmationCode.

Implementation

Future<void> addUserPhone(
  UserPhone phone, {
  ConfirmationCode? confirmation,
  String? locale,
}) async {
  Log.debug(
    'addUserPhone($phone, confirmation: $confirmation, locale: $locale)',
    '$runtimeType',
  );

  await _myUserRepository.addUserPhone(
    phone,
    confirmation: confirmation,
    locale: locale,
  );
}