copyWith method

AddSavedNotificationSound copyWith({
  1. InputFile? sound,
})

Implementation

AddSavedNotificationSound copyWith({
  InputFile? sound,
}) =>
    AddSavedNotificationSound(
      sound: sound ?? this.sound,
    );