copyWith method

NotificationTagUpdateV3Body copyWith({
  1. String? deviceId,
  2. TagOperationDTO? operation,
  3. 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);
}