copyWith method
- String? deviceId,
- TagOperationDTO? operation,
- List<
String> ? tags,
Implementation
NotificationTagUpdateV3Body copyWith(
{String? deviceId,
enums.TagOperationDTO? operation,
List<String>? tags}) {
return NotificationTagUpdateV3Body(
deviceId: deviceId ?? this.deviceId,
operation: operation ?? this.operation,
tags: tags ?? this.tags);
}