LazySlot<T> constructor

const LazySlot<T>({
  1. Key? key,
  2. required Signal<T> connect,
  3. required Widget to(
    1. BuildContext context,
    2. T value
    ),
  4. Widget placeholder(
    1. BuildContext context
    )?,
})

Implementation

const LazySlot({
  super.key,
  required this.connect,
  required this.to,
  this.placeholder,
});