void addPhoneNumber(String phone, [String? type]) { _phoneNumbers ??= []; _phoneTypes ??= []; _phoneNumbers!.add(phone); _phoneTypes!.add(type); }