copyWithWrapped method
Implementation
RegisterNotificationV3Body copyWithWrapped(
{Wrapped<String?>? deviceId,
Wrapped<String?>? deviceDescription,
Wrapped<enums.PlatformDTO?>? platform,
Wrapped<String?>? token,
Wrapped<bool?>? sendPushNotifications}) {
return RegisterNotificationV3Body(
deviceId: (deviceId != null ? deviceId.value : this.deviceId),
deviceDescription: (deviceDescription != null
? deviceDescription.value
: this.deviceDescription),
platform: (platform != null ? platform.value : this.platform),
token: (token != null ? token.value : this.token),
sendPushNotifications: (sendPushNotifications != null
? sendPushNotifications.value
: this.sendPushNotifications));
}