copyWith method
GuestInfo
copyWith(
{ - String? phone,
- String? fullName,
- String? email,
- String? contactId,
- bool? newContact,
- String? uuid,
- String? domain,
- String? browser,
- String? ip,
- String? address,
- String? lat,
- String? lon,
- OtherInfo? otherInfo,
})
Implementation
GuestInfo copyWith({
String? phone,
String? fullName,
String? email,
String? contactId,
bool? newContact,
String? uuid,
String? domain,
String? browser,
String? ip,
String? address,
String? lat,
String? lon,
OtherInfo? otherInfo,
}) =>
GuestInfo(
phone: phone ?? this.phone,
fullName: fullName ?? this.fullName,
email: email ?? this.email,
contactId: contactId ?? this.contactId,
newContact: newContact ?? this.newContact,
uuid: uuid ?? this.uuid,
domain: domain ?? this.domain,
browser: browser ?? this.browser,
ip: ip ?? this.ip,
address: address ?? this.address,
lat: lat ?? this.lat,
lon: lon ?? this.lon,
otherInfo: otherInfo ?? this.otherInfo,
);