Show constructor

const Show(
  1. bool when(), {
  2. required BloomNode child,
  3. BloomNode? fallback,
})

Creates a conditional rendering boundary with predicate when, child, and optional fallback.

Implementation

const Show(
  super.when, {
  required super.child,
  super.fallback,
});