copyWith method

GetSavedNotificationSound copyWith({
  1. int? notificationSoundId,
})

Implementation

GetSavedNotificationSound copyWith({int? notificationSoundId}) =>
    GetSavedNotificationSound(
      notificationSoundId: notificationSoundId ?? this.notificationSoundId,
    );