ConditionalSlot<T> constructor
- Key? key,
- required Signal<
T> connect, - required bool when(
- T value
- required Widget to(
- BuildContext context,
- T value
- Widget orElse(
- BuildContext context
Implementation
const ConditionalSlot({
super.key,
required this.connect,
required this.when,
required this.to,
this.orElse,
});