How to provide dynamic default values for a Parameter in a WidgetConfigurationIntent?

struct MyIntentConfiguration: WidgetConfigurationIntent {
  static var title: LocalizedStringResource = "Habit Selector"
  static var description: IntentDescription = IntentDescription("Select Habits")
  
  @Parameter(title: "Select Habits", size: 9)
  var habits: [HabitEntity]
}

The previous code correctly allows the user to pick the 9 habits they want to track in the widget. But initially the widget is empty. How can I define default values for the Parameter "habits" taking into account that the values are dynamic?

How to provide dynamic default values for a Parameter in a WidgetConfigurationIntent?
 
 
Q