copyWithWrapped method
Implementation
DealerDeviceSearchV3Body copyWithWrapped(
{Wrapped<String?>? oncueUsername,
Wrapped<String?>? email,
Wrapped<bool?>? excludeDevicesWithDealers}) {
return DealerDeviceSearchV3Body(
oncueUsername:
(oncueUsername != null ? oncueUsername.value : this.oncueUsername),
email: (email != null ? email.value : this.email),
excludeDevicesWithDealers: (excludeDevicesWithDealers != null
? excludeDevicesWithDealers.value
: this.excludeDevicesWithDealers));
}