copyWith method
- String? deviceId,
- String? deviceDescription,
- PlatformDTO? platform,
- String? token,
- bool? sendPushNotifications,
Implementation
RegisterNotificationV3Body copyWith(
{String? deviceId,
String? deviceDescription,
enums.PlatformDTO? platform,
String? token,
bool? sendPushNotifications}) {
return RegisterNotificationV3Body(
deviceId: deviceId ?? this.deviceId,
deviceDescription: deviceDescription ?? this.deviceDescription,
platform: platform ?? this.platform,
token: token ?? this.token,
sendPushNotifications:
sendPushNotifications ?? this.sendPushNotifications);
}