Since value property is now required on breakpoint condition it forces you to pass it in the ResponsiveVisibility conditions even though it's not used:
ResponsiveVisibility(
hiddenConditions: [Condition.smallerThan(name: DESKTOP, value: true)],
child: ...
)
while probably the expected usage would be to not pass it in this case:
hiddenConditions: [Condition.smallerThan(name: DESKTOP)],
Right now you get The named parameter 'value' is required, but there's no corresponding argument. when trying to do so.