copyWith method

NotificationSounds copyWith({
  1. List<NotificationSound>? notificationSounds,
})

Implementation

NotificationSounds copyWith({List<NotificationSound>? notificationSounds}) =>
    NotificationSounds(
      notificationSounds: notificationSounds ?? this.notificationSounds,
    );