ReactiveShow constructor
ReactiveShow({})
Creates a conditional reactive widget.
builder is shown when showIf evaluates to true. Otherwise, elseShow is rendered.
If reactiveKey is not provided, it defaults to a generic reactive key.
Implementation
ReactiveShow({
super.key,
this.elseShow = const Nothing(),
this.showIf,
required this.builder,
Key? reactiveKey,
}) : reactiveKey = reactiveKey ?? ValueKey(ReactivityTypeEnum.reactive);