copyWith method
Implementation
@override
UpdateSavedNotificationSounds copyWith({
List<int>? notificationSoundIds,
dynamic extra,
int? clientId,
}) =>
UpdateSavedNotificationSounds(
notificationSoundIds: notificationSoundIds ?? this.notificationSoundIds,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);