ChannelBuilder<C extends StateChannel<S>, S extends ChannelSignal> constructor

const ChannelBuilder<C extends StateChannel<S>, S extends ChannelSignal>({
  1. Key? key,
  2. bool condition(
    1. C channel,
    2. S signal
    )?,
  3. required Widget builder(
    1. BuildContext context,
    2. C channel,
    3. Widget? child
    ),
  4. Widget child()?,
})

Implementation

const ChannelBuilder({Key? key, this.condition, required this.builder, this.child}) : super(key: key);