copyWith method
Implementation
NotificationSendV3Body copyWith(
{List<String>? tags,
String? message,
String? type,
Map<String, dynamic>? data,
enums.PlatformDTO? platform}) {
return NotificationSendV3Body(
tags: tags ?? this.tags,
message: message ?? this.message,
type: type ?? this.type,
data: data ?? this.data,
platform: platform ?? this.platform);
}