AccountBuilder.clone constructor

AccountBuilder.clone(
  1. Account from
)

Implementation

AccountBuilder.clone(Account from)
    : _userId = from.userId,
      _domain = from.domain,
      _tenantId = from.tenantId,
      _createdAt = from.createdAt,
      _username = from.username,
      _phone = from.phone,
      _email = from.email,
      _nickname = from.nickname,
      _givenName = from.givenName,
      _familyName = from.familyName,
      _middleName = from.middleName,
      _photo = from.photo,
      _gender = from.gender,
      _birthdate = from.birthdate,
      _address = from.address,
      _brief = from.brief;