copyWith method
Implementation
NotificationSound copyWith({
int? id,
int? duration,
int? date,
String? title,
String? data,
File? sound,
dynamic extra,
int? clientId,
}) =>
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,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);