copyWithWrapped method

DealerDeviceSearchV3Body copyWithWrapped({
  1. Wrapped<String?>? oncueUsername,
  2. Wrapped<String?>? email,
  3. Wrapped<bool?>? excludeDevicesWithDealers,
})

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));
}