copyWithWrapped method
Implementation
NotificationSendV3Body copyWithWrapped(
{Wrapped<List<String>>? tags,
Wrapped<String>? message,
Wrapped<String>? type,
Wrapped<Map<String, dynamic>>? data,
Wrapped<enums.PlatformDTO?>? platform}) {
return NotificationSendV3Body(
tags: (tags != null ? tags.value : this.tags),
message: (message != null ? message.value : this.message),
type: (type != null ? type.value : this.type),
data: (data != null ? data.value : this.data),
platform: (platform != null ? platform.value : this.platform));
}