copyWith method
Implementation
NotificationSound copyWith({
int? id,
int? duration,
int? date,
String? title,
String? data,
File? sound,
}) => NotificationSound(
id: id ?? this.id,
duration: duration ?? this.duration,
date: date ?? this.date,
title: title ?? this.title,
data: data ?? this.data,
sound: sound ?? this.sound,
);